'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Frederick Chiluba

Frederick Jacob Titus Chiluba (April 30, 1943 – June 18, 2011) was a Zambian politician who was the second President of Zambia from 1991 to 2002. Chiluba, a trade union leader, won the country's multi-party presidential election in 1991 as the candidate of the Movement for Multi-party Democracy (MMD), defeating long-time President Kenneth Kaunda. He was re-elected in 1996. As he was unable to run for a third term in 2001, former Vice President Levy Mwanawasa instead ran as the MMD candidate and succeeded him. After leaving office, Chiluba was the subject of a long investigation and trial regarding alleged corruption; he was eventually acquitted in 2009.

Early life

He was born to Jacob Titus Chiluba Nkonde and Diana Kaimba and grew up in Kitwe, Zambia. Chiluba has married twice. Frederick Chiluba did his secondary school of education at Kawambwa Secondary School in Kawambwa, where he was expelled in the second year for political activities. He became a bus conductor, and later a politician due to his charismatic personality. He worked as city councilor before becoming an accounts assistant at Atlas Copco, and rose in his rankings, in Ndola where he joined the National Union of Building.

Podcasts:

  • Former Zambian leader on trial - 14 Aug 07

    Subscribe to our channel http://bit.ly/AJSubscribe Frederick Chiluba, Zambia's former leader, has been accused of stealing state funds during his ten years as leader of the country from 1991-2001. Yvonne Ndege, reporting for Al Jazeera from Lusaka, looks at the case against the former president. At Al Jazeera English, we focus on people and events that affect people's lives. We bring topics to light that often go under-reported, listening to all sides of the story and giving a 'voice to the voiceless.' Reaching more than 270 million households in over 140 countries across the globe, our viewers trust Al Jazeera English to keep them informed, inspired, and entertained. Our impartial, fact-based reporting wins worldwide praise and respect. It is our unique brand of journalism that the worl...

    published: 14 Aug 2007
  • WRAP Fmr president Chiluba cleared of corruption, sot, leaving court

    (17 Aug 2009) 1. Former Zambian President Fredrick Titus Jacob Chiluba exiting court surrounded by cheering well-wishers 2. Chiluba and supporters singing 3. SOUNDBITE: (English) Fredrick Titus Jacob Chiluba, former Zambian President: "I will speak much later, in another two weeks. I just now want to thank the almighty God whose mercy endures forever. On behalf of my wife, my entire family, we want to pay tribute to him. He has never failed us." 4. Chiluba getting into car outside courtroom, cheered on by crowd 5. Car driving away STORYLINE: A magistrate acquitted former Zambian President Frederick Chiluba of corruption charges on Monday after a six-year trial in a ruling that overjoyed his supporters but frustrated clean-government campaigners in Africa. The 63-year-old former ...

    published: 30 Jul 2015
  • ZAMBIA/CONGO: CONGO PEACE DEAL LATEST

    (11 Jul 1999) English/Nat Defiant Congolese rebels insisted on Sunday they will battle on despite the signing by six nations of a long-awaited peace accord to end the fighting in Congo's civil war. The agreement was signed on Saturday by Congo's government and the five neighboring countries which have been drawn into the fight. But the rebels were excluded from the historic deal after inter-faction squabbling prevented them from coming to the table. The headlines of morning papers around Africa announced the news of the historic signing which all involved hoped would signify the end of one of Africa's biggest conflicts. Despite the fact that rebel groups had not signed the agreement Zambia's President Frederick Chiluba, who mediated the discussions which lead to the signing,...

    published: 21 Jul 2015
  • Today in history - Zambia’s President Frederick Chiluba abruptly ended his three-day state vist

    New Vision TV offers analyzed news content on trending stories in Uganda, be it politics, business, and the day today life This is broadcast in various shows such as The daily News bulletin, the hourly news updates, the business show called The Handshake and Music News show. Since Uganda is known as the Pearl of Africa, New Vision TV has a show that broadcasts Uganda’s beauty called the Pearl of Africa. https://www.facebook.com/thenewvision/ http://www.newvision.co.ug/ https://twitter.com/newvisionwire

    published: 28 Apr 2020
  • Biography of Frederick Chiluba,Origin,Education, Career,Policies,Struggles,Trials,Family

    Frederick Jacob Titus Chiluba was born on the 30th of April 1943. He was a Zambian politician who succeeded Kenneth Kaunda and became the second President of Zambia from 1991 to 2002, how did he get to power and what did he do with it? Watch!

    published: 10 Jan 2020
  • Presidential elections in Zambia, opposition candidate voting

    (27 Dec 2001) 1. Pull out from polling station sign to wide of polling station 2. Crowd of people waiting to vote 3. Wide shot of Anderson Mazoka, Leader of the United Party for National Development, arriving to vote 4. Press waiting outside polling station 5. SOUNDBITE: (English) Anderson Mazoka, Leader of the United Party for National Development: "(Q: Can you just tell me on what grounds is your confidence based?) It is on the basis of the response we have seen through the public over the years, the message we have is very acceptable to the Zambian people, they have responded to us, they have talked to us and it gives us the confidence that we are going to be successful. (Q: Do you think that the elections are going to be free and fair?) We are receiving reports that are distur...

    published: 21 Jul 2015
  • Zambian Elections

    In Zambia, residents are poised to vote in presidential and local elections on Tuesday. Incumbent President Ruiah Banda weathered an early constitutional challenge to his bid for a second term. This election is a rematch of the 2008 race between Mr. Banda and Michael Sata. Over 5 million people are registered to vote in Tuesday's election. VOA's Paul Sisco reports

    published: 19 Sep 2011
  • ZAMBIA: FORMER PRESIDENT KAUNDA TO BE PLACED UNDER HOUSE ARREST

    (31 Dec 1997) English/Nat International pressure has forced the Zambian government to move former President Kenneth Kaunda from prison and put him under house arrest. Kaunda - who stands accused of mounting a coup attempt will also be barred from political activities. However, it is not yet clear if the 73-year-old former president - considered the father of Zambia's independence - will be released or how long he will continue to be detained. It was here - to a high-security prison north of Zambia's capital, Lusaka that the country's former President Kenneth Kaunda was taken after his arrest on Christmas Day. He was jailed on December 25th soon after returning to Zambia from a trip abroad, accused of being behind an October 28th coup attempt. Here he's meeting former Tanz...

    published: 21 Jul 2015
  • Zambia’s Independence Celebrations

    Zambia's president Michael Sata was absent from the country's golden jubilee celebrations due to health reasons but, Zambians celebrated the day with the country's founding father, Kenneth Kaunda. The 90 year old former president led Zambia from its independence until 1991 when he gave way to Frederick Chiluba.

    published: 27 Oct 2014
  • WRAP Fmr president Chiluba cleared of corruption ADDS sbite, leaving court

    (17 Aug 2009) 1. Wide shot of Lusaka Magistrates Court where Former Zambian President Fredrick Titus Jacob Chiluba's case is being heard 2. Pull out from sign reading (English): "Lusaka Magistrates Court Complex" to wide exterior of court 3. Car with police escort arriving outside court 4. Mid of Chiluba getting out of car and shaking hands with officials 5. Chiluba walking to court room accompanied by his wife, Regina 6. Chiluba entering court room ++CLIENT NOTE - VIDEO QUALITY AS INCOMING++ 7. SOUNDBITE: (English) Fredrick Titus Jacob Chiluba, former Zambian President: "I will speak much later, in another two weeks. I just now want to thank the almighty God whose mercy endures forever. On behalf of my wife, my entire family, we want to pay tribute to him. He has never failed...

    published: 30 Jul 2015
developed with YouTube
Former Zambian leader on trial - 14 Aug 07
2:54

Former Zambian leader on trial - 14 Aug 07

  • Order:
  • Duration: 2:54
  • Uploaded Date: 14 Aug 2007
  • views: 58361
Subscribe to our channel http://bit.ly/AJSubscribe Frederick Chiluba, Zambia's former leader, has been accused of stealing state funds during his ten years as leader of the country from 1991-2001. Yvonne Ndege, reporting for Al Jazeera from Lusaka, looks at the case against the former president. At Al Jazeera English, we focus on people and events that affect people's lives. We bring topics to light that often go under-reported, listening to all sides of the story and giving a 'voice to the voiceless.' Reaching more than 270 million households in over 140 countries across the globe, our viewers trust Al Jazeera English to keep them informed, inspired, and entertained. Our impartial, fact-based reporting wins worldwide praise and respect. It is our unique brand of journalism that the world has come to rely on. We are reshaping global media and constantly working to strengthen our reputation as one of the world's most respected news and current affairs channels. Social Media links: Facebook: https://www.facebook.com/aljazeera Instagram: https://instagram.com/aljazeera/?ref=... Twitter: https://twitter.com/ajenglish Website: http://www.aljazeera.com/ google+: https://plus.google.com/+aljazeera/posts
https://wn.com/Former_Zambian_Leader_On_Trial_14_Aug_07
WRAP Fmr president Chiluba cleared of corruption, sot, leaving court
1:02

WRAP Fmr president Chiluba cleared of corruption, sot, leaving court

  • Order:
  • Duration: 1:02
  • Uploaded Date: 30 Jul 2015
  • views: 37261
(17 Aug 2009) 1. Former Zambian President Fredrick Titus Jacob Chiluba exiting court surrounded by cheering well-wishers 2. Chiluba and supporters singing 3. SOUNDBITE: (English) Fredrick Titus Jacob Chiluba, former Zambian President: "I will speak much later, in another two weeks. I just now want to thank the almighty God whose mercy endures forever. On behalf of my wife, my entire family, we want to pay tribute to him. He has never failed us." 4. Chiluba getting into car outside courtroom, cheered on by crowd 5. Car driving away STORYLINE: A magistrate acquitted former Zambian President Frederick Chiluba of corruption charges on Monday after a six-year trial in a ruling that overjoyed his supporters but frustrated clean-government campaigners in Africa. The 63-year-old former leader, was accused of diverting nearly 500-thousand US dollars of state money into accounts to pay for an extravagant lifestyle when he served as Zambia's first democratically elected leader from 1991 to 2001. The judge ruled that the funds could not be traced to government coffers. About 150 supporters in the courtroom broke into applause even before Magistrate Jones Chinyama finished reading the handwritten, 3,400-word verdict. "After studying the evidence presented to this court, I'm left with no doubt that the prosecution failed to prove their case beyond a reasonable doubt," Chinyama said. Speaking after the hearing, Chiluba said he would discuss the case in further detail in the next two weeks. In the meantime he said, he just wanted to "thank the almighty God whose mercy endures forever." Chiluba smiled and hugged his wife and other family members, then walked from the courthouse to his black Mercedes-Benz as his supporters ran after him, singing and dancing. Two co-defendants, former executives of a financial services company, were found guilty of receiving stolen money from the Zambian intelligence services. They both were sentenced to five years in jail. Chiluba, who had faced up 15 years in jail, had claimed to be the victim of a political witch hunt backed by Britain, Zambia's former colonial rulers. Chiluba's prosecution was part of a larger anti-corruption strategy pushed by the late President Levy Mwanawasa, once Chiluba's protege. Mwanawasa died last year at the age of 59 after a stroke. Mwanawasa's vice president, Rupiah Banda, won election last October to complete the remaining three years in Mwanawasa's five-year term. Find out more about AP Archive: http://www.aparchive.com/HowWeWork Twitter: https://twitter.com/AP_Archive Facebook: https://www.facebook.com/APArchives ​​ Instagram: https://www.instagram.com/APNews/ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/31da729aa583b5b22952372448328939
https://wn.com/Wrap_Fmr_President_Chiluba_Cleared_Of_Corruption,_Sot,_Leaving_Court
ZAMBIA/CONGO: CONGO PEACE DEAL LATEST
3:48

ZAMBIA/CONGO: CONGO PEACE DEAL LATEST

  • Order:
  • Duration: 3:48
  • Uploaded Date: 21 Jul 2015
  • views: 39888
(11 Jul 1999) English/Nat Defiant Congolese rebels insisted on Sunday they will battle on despite the signing by six nations of a long-awaited peace accord to end the fighting in Congo's civil war. The agreement was signed on Saturday by Congo's government and the five neighboring countries which have been drawn into the fight. But the rebels were excluded from the historic deal after inter-faction squabbling prevented them from coming to the table. The headlines of morning papers around Africa announced the news of the historic signing which all involved hoped would signify the end of one of Africa's biggest conflicts. Despite the fact that rebel groups had not signed the agreement Zambia's President Frederick Chiluba, who mediated the discussions which lead to the signing, sounded upbeat when discussing the significance of the deal. He said that the Congolese problem was both an internal and external one and that with the signing of the agreement one of the difficulties had been solved. SOUNDBITE: (English) "Therefore we have what we call belligerent nations, assisting one side or another. These are the nations which yesterday very willingly signed this agreement. And the importance of the signing is that they will not abate war, they will not assist those who will be engaged in fighting . And therefore with them staying away from that activity or assistance we are hopeful that hostilities will cease and that observance of the agreement will begin to follow." SUPER CAPTION: Frederick Chiluba, Zambian President The exclusion of three rebel groups from the signing came after one faction refused to participate if the leader of another splinter group was allowed to sign. The agreement called for a truce to start within 24 hours and for a joint military commission to administer the plan and oversee a ceasefire between all parties. But on Sunday the rebel groups announced they are not bound by the agreement and vowed to fight on. Chiluba said he hoped the situation would be resolved soon. SOUNDBITE: (English) "Let me hasten to say before I do anything that this is the work of the Ministers of Foreign Affairs and Defence and the rebel groups. Their input from start to finish is recorded here. Nobody, no one at all has got any argument with this paper. As I said the signing difficulty within the R-S-C-D emanates from the leadership problems which they have within which I hope can be resolved as quickly as possible." SUPER CAPTION: Frederick Chiluba, Zambian President Laurent Kabila came to power on a wave of optimism after his rebel forces had defeated the unpopular president Mobutu Sese Seko who had been in power for 32 years. On May, 17 1997 his supporters marched into the capital of the country which was then known as Zaire. Mobutu had already gone into exile. He was sworn in as president on May 29 1997 but soon the Democratic Republic of Congo was embroiled in another civil war. Rebels from Rwanda and Uganda have accused Congolese President Laurent Kabila of corruption, mismanagement and warmongering while Zimbabwe, Namibia and Angola have backed Kabila. Fighting between troops loyal to Kabila and the rebels, backed by other countries in the region, even reached the capital, Kinshasa. Many rebels have been taken prisoner, while others have not been so lucky. The Congo conflict has threatened economic and social stability throughout Central Africa and displaced tens of thousands of Congolese. Chiluba took the opportunity to slam the record of the United Nations on their handling of refugees in Africa. SOUNDBITE: (English) Find out more about AP Archive: http://www.aparchive.com/HowWeWork Twitter: https://twitter.com/AP_Archive Facebook: https://www.facebook.com/APArchives ​​ Instagram: https://www.instagram.com/APNews/ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/6811979c29be954ef2b0777a382b246d
https://wn.com/Zambia_Congo_Congo_Peace_Deal_Latest
Today in history - Zambia’s President Frederick Chiluba abruptly ended his three-day state vist
0:36

Today in history - Zambia’s President Frederick Chiluba abruptly ended his three-day state vist

  • Order:
  • Duration: 0:36
  • Uploaded Date: 28 Apr 2020
  • views: 2028
New Vision TV offers analyzed news content on trending stories in Uganda, be it politics, business, and the day today life This is broadcast in various shows such as The daily News bulletin, the hourly news updates, the business show called The Handshake and Music News show. Since Uganda is known as the Pearl of Africa, New Vision TV has a show that broadcasts Uganda’s beauty called the Pearl of Africa. https://www.facebook.com/thenewvision/ http://www.newvision.co.ug/ https://twitter.com/newvisionwire
https://wn.com/Today_In_History_Zambia’S_President_Frederick_Chiluba_Abruptly_Ended_His_Three_Day_State_Vist
Biography of Frederick Chiluba,Origin,Education, Career,Policies,Struggles,Trials,Family
8:06

Biography of Frederick Chiluba,Origin,Education, Career,Policies,Struggles,Trials,Family

  • Order:
  • Duration: 8:06
  • Uploaded Date: 10 Jan 2020
  • views: 71755
Frederick Jacob Titus Chiluba was born on the 30th of April 1943. He was a Zambian politician who succeeded Kenneth Kaunda and became the second President of Zambia from 1991 to 2002, how did he get to power and what did he do with it? Watch!
https://wn.com/Biography_Of_Frederick_Chiluba,Origin,Education,_Career,Policies,Struggles,Trials,Family
Presidential elections in Zambia, opposition candidate voting
2:02

Presidential elections in Zambia, opposition candidate voting

  • Order:
  • Duration: 2:02
  • Uploaded Date: 21 Jul 2015
  • views: 30540
(27 Dec 2001) 1. Pull out from polling station sign to wide of polling station 2. Crowd of people waiting to vote 3. Wide shot of Anderson Mazoka, Leader of the United Party for National Development, arriving to vote 4. Press waiting outside polling station 5. SOUNDBITE: (English) Anderson Mazoka, Leader of the United Party for National Development: "(Q: Can you just tell me on what grounds is your confidence based?) It is on the basis of the response we have seen through the public over the years, the message we have is very acceptable to the Zambian people, they have responded to us, they have talked to us and it gives us the confidence that we are going to be successful. (Q: Do you think that the elections are going to be free and fair?) We are receiving reports that are disturbing, that there is some attempts to rig but we are confident that the majority of people will see the right way." 6. Polling boxes inside the polling station 7. Woman voting 8. Pan from election official to Mazoka 9. Mazoka's wife voting 10. Mazoka voting 11. Woman voting STORYLINE: Opposition leader and election favourite Anderson Mazoka, who heads the United Party for National Development, cast his vote in Zambia's national elections on Thursday. Zambians, who have known only two leaders in their nation's 37 years of existence, are going to the polls for presidential and parliamentary elections. Outgoing president Frederick Chiluba of the ruling party Movement for Multiparty Democracy (MMD) is not running as the constitution forbids a third term. Although there was no clear frontrunner in the latest polls, Anderson Mazoka was leading the pack. Mazoka, who entered politics in 1997 and founded the party he now runs, presents himself as a manager and capable government outsider who can turn Zambia's ailing economy around. Eighty-six percent of Zambia's population live below the poverty line. Originally a mechanical engineer, Mazoka was managing director of the Anglo-American Corporation, a major copper mining company. Most of his support comes from the southern and western regions of the country - he's been pegged as a regionalist who is uninterested in other parts of the country. But he's also been commended by observers for surrounding himself with capable advisers. The people of this poor southern African country are choosing between 11 presidential candidates, including businessmen, ex-generals and even a television evangelist. Find out more about AP Archive: http://www.aparchive.com/HowWeWork Twitter: https://twitter.com/AP_Archive Facebook: https://www.facebook.com/APArchives ​​ Instagram: https://www.instagram.com/APNews/ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/5885e21c7b4d3aac85ac84a6e6de9ad4
https://wn.com/Presidential_Elections_In_Zambia,_Opposition_Candidate_Voting
Zambian Elections
4:09

Zambian Elections

  • Order:
  • Duration: 4:09
  • Uploaded Date: 19 Sep 2011
  • views: 46981
In Zambia, residents are poised to vote in presidential and local elections on Tuesday. Incumbent President Ruiah Banda weathered an early constitutional challenge to his bid for a second term. This election is a rematch of the 2008 race between Mr. Banda and Michael Sata. Over 5 million people are registered to vote in Tuesday's election. VOA's Paul Sisco reports
https://wn.com/Zambian_Elections
ZAMBIA: FORMER PRESIDENT KAUNDA TO BE PLACED UNDER HOUSE ARREST
3:00

ZAMBIA: FORMER PRESIDENT KAUNDA TO BE PLACED UNDER HOUSE ARREST

  • Order:
  • Duration: 3:00
  • Uploaded Date: 21 Jul 2015
  • views: 249251
(31 Dec 1997) English/Nat International pressure has forced the Zambian government to move former President Kenneth Kaunda from prison and put him under house arrest. Kaunda - who stands accused of mounting a coup attempt will also be barred from political activities. However, it is not yet clear if the 73-year-old former president - considered the father of Zambia's independence - will be released or how long he will continue to be detained. It was here - to a high-security prison north of Zambia's capital, Lusaka that the country's former President Kenneth Kaunda was taken after his arrest on Christmas Day. He was jailed on December 25th soon after returning to Zambia from a trip abroad, accused of being behind an October 28th coup attempt. Here he's meeting former Tanzanian leader, Julius Nyerere, one of many pressuring Zambia's government to either try Kaunda or release him. The United States, Britain, South Africa, Botswana, Libya and the Organization for African Unity had all called for Kaunda to be put on trial or be released. And on Wednesday, their appeals seem to have been heard. In a national T-V address, Zambia's President Chiluba remembered Kaunda's days of greatness. SOUNDBITE: (English) "To governments in the region, we appreciate their concern. We appreciate their concern about Dr Kaunda, who was our leader during the liberation time. He led Zambia, and we can't take this away from him." SUPER CAPTION: Frederick Chiluba, President of Zambia Kaunda will be placed under house arrest, not kept in jail, he said. But he will face strict restrictions -- including no political activities. SOUNDBITE: (English) "And so I listened to my elder statesmen and they are saying 'Keep him away from prison' so I called an emergency cabinet meeting last night and I informed them, and we agreed that we will not keep him in prison, we will move him from there and restrict him in his own house so that the former First Lady doesn't have difficulties in seeing my dear elder brother, Dr Kaunda. He will consequently be restricted in his own home but there are conditions on these restrictions and I hope he cooperates because if he doesn't we may be compelled to take him back to where he thinks he must stay." SUPER CAPTION: Frederick Chiluba, President of Zambia Kaunda led Zambia to independence from Britain in 1964. He ruled the southern African nation for 27 years until he lost to Chiluba in the nation's first multiparty elections in 1991. But it's not clear when the 73-year-old former president, would actually be released. One Zambian leading the fight in Kaunda's support -- his son, a former army major -- here, leading a noisy demonstration outside Lusaka's High Court. Find out more about AP Archive: http://www.aparchive.com/HowWeWork Twitter: https://twitter.com/AP_Archive Facebook: https://www.facebook.com/APArchives ​​ Instagram: https://www.instagram.com/APNews/ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/4709dd63bfefaead9400df265b816f24
https://wn.com/Zambia_Former_President_Kaunda_To_Be_Placed_Under_House_Arrest
Zambia’s Independence Celebrations
2:27

Zambia’s Independence Celebrations

  • Order:
  • Duration: 2:27
  • Uploaded Date: 27 Oct 2014
  • views: 13149
Zambia's president Michael Sata was absent from the country's golden jubilee celebrations due to health reasons but, Zambians celebrated the day with the country's founding father, Kenneth Kaunda. The 90 year old former president led Zambia from its independence until 1991 when he gave way to Frederick Chiluba.
https://wn.com/Zambia’S_Independence_Celebrations
WRAP Fmr president Chiluba cleared of corruption ADDS sbite, leaving court
1:40

WRAP Fmr president Chiluba cleared of corruption ADDS sbite, leaving court

  • Order:
  • Duration: 1:40
  • Uploaded Date: 30 Jul 2015
  • views: 9394
(17 Aug 2009) 1. Wide shot of Lusaka Magistrates Court where Former Zambian President Fredrick Titus Jacob Chiluba's case is being heard 2. Pull out from sign reading (English): "Lusaka Magistrates Court Complex" to wide exterior of court 3. Car with police escort arriving outside court 4. Mid of Chiluba getting out of car and shaking hands with officials 5. Chiluba walking to court room accompanied by his wife, Regina 6. Chiluba entering court room ++CLIENT NOTE - VIDEO QUALITY AS INCOMING++ 7. SOUNDBITE: (English) Fredrick Titus Jacob Chiluba, former Zambian President: "I will speak much later, in another two weeks. I just now want to thank the almighty God whose mercy endures forever. On behalf of my wife, my entire family, we want to pay tribute to him. He has never failed us." 8. Chiluba getting into car outside courtroom, cheered on by crowd 9. Car driving away STORYLINE: Former Zambian President Frederick Chiluba was cleared of corruption charges on Monday following a six-year trial after a magistrate ruled the funds could not be traced to government money. Those in the courtroom broke into applause before Magistrate Jones Chinyama finished reading the 3,400-word verdict. "After studying the evidence presented to this court, I'm left with no doubt that the prosecution failed to prove their case beyond a reasonable doubt", Chinyama said. Chiluba, who was in attendance on Monday with his wife, was accused of stealing nearly 500-thousand US dollars of state money to fund an extravagant lifestyle during his decade as Zambia's first democratically elected leader. Speaking after the hearing, Chiluba said he would discuss the case in further detail in the next two weeks. In the meantime he said, he just wanted to "thank the almighty God whose mercy endures forever." Chiluba, who was president of the impoverished southern African nation from 1991 to 2001, could have faced up to 15 years in jail if convicted. He had argued that he and his associates were targeted in a political witch hunt backed by the British, Zambia's former colonial rulers. Chiluba's prosecution was part of a larger anti-corruption strategy pushed by the late President Levy Mwanawasa, once Chiluba's protege. Mwanawasa died last year at the age of 59 after a stroke. Mwanawasa's vice president, Rupiah Banda, won election last October to complete the remaining three years in Mwanawasa's five-year term. Find out more about AP Archive: http://www.aparchive.com/HowWeWork Twitter: https://twitter.com/AP_Archive Facebook: https://www.facebook.com/APArchives ​​ Instagram: https://www.instagram.com/APNews/ You can license this story through AP Archive: http://www.aparchive.com/metadata/youtube/fbe3cdb41b199c4dc9bc0425db21cc78
https://wn.com/Wrap_Fmr_President_Chiluba_Cleared_Of_Corruption_Adds_Sbite,_Leaving_Court
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Former Zambian leader on trial - 14 Aug 07
    2:54
    Former Zambian leader on trial - 14 Aug 07remove from playlist
  • WRAP Fmr president Chiluba cleared of corruption, sot, leaving court
    1:02
    WRAP Fmr president Chiluba cleared of corruption, sot, leaving courtremove from playlist
  • ZAMBIA/CONGO: CONGO PEACE DEAL LATEST
    3:48
    ZAMBIA/CONGO: CONGO PEACE DEAL LATESTremove from playlist
  • Today in history - Zambia’s President Frederick Chiluba abruptly ended his three-day state vist
    0:36
    Today in history - Zambia’s President Frederick Chiluba abruptly ended his three-day state vistremove from playlist
  • Biography of Frederick Chiluba,Origin,Education, Career,Policies,Struggles,Trials,Family
    8:06
    Biography of Frederick Chiluba,Origin,Education, Career,Policies,Struggles,Trials,Familyremove from playlist
  • Presidential elections in Zambia, opposition candidate voting
    2:02
    Presidential elections in Zambia, opposition candidate votingremove from playlist
  • Zambian Elections
    4:09
    Zambian Electionsremove from playlist
  • ZAMBIA: FORMER PRESIDENT KAUNDA TO BE PLACED UNDER HOUSE ARREST
    3:00
    ZAMBIA: FORMER PRESIDENT KAUNDA TO BE PLACED UNDER HOUSE ARRESTremove from playlist
  • Zambia’s Independence Celebrations
    2:27
    Zambia’s Independence Celebrationsremove from playlist
  • WRAP Fmr president Chiluba cleared of corruption ADDS sbite, leaving court
    1:40
    WRAP Fmr president Chiluba cleared of corruption ADDS sbite, leaving courtremove from playlist
developed with YouTube
PLAYLIST TIME:

Former Zambian leader on trial - 14 Aug 07

Subscribe to our channel http://bit.ly/AJSubscribe Frederick Chiluba, Zambia's former leader, has been accused of stealing state funds during his ten years as leader of the country from 1991-2001. Yvonne Ndege, reporting for Al Jazeera from Lusaka, looks at the case against the former president. At Al Jazeera English, we focus on people and events that affect people's lives. We bring topics to light that often go under-reported, listening to all sides of the story and giving a 'voice to the voiceless.' Reaching more than 270 million households in over 140 countries across the globe, our viewers trust Al Jazeera English to keep them informed, inspired, and entertained. Our impartial, fact-based reporting wins worldwide praise and respect. It is our unique brand of journalism that the world has come to rely on. We are reshaping global media and constantly working to strengthen our reputation as one of the world's most respected news and current affairs channels. Social Media links: Facebook: https://www.facebook.com/aljazeera Instagram: https://instagram.com/aljazeera/?ref=... Twitter: https://twitter.com/ajenglish Website: http://www.aljazeera.com/ google+: https://plus.google.com/+aljazeera/posts
2:54
Former Zambian leader on trial - 14 Aug 07
Subscribe to our channel http://bit.ly/AJSubscribe Frederick Chiluba, Zambia's former lea...
published: 14 Aug 2007
Play in Full Screen
1:02
WRAP Fmr president Chiluba cleared of corruption, sot, leaving court
(17 Aug 2009) 1. Former Zambian President Fredrick Titus Jacob Chiluba exiting court sur...
published: 30 Jul 2015
Play in Full Screen
3:48
ZAMBIA/CONGO: CONGO PEACE DEAL LATEST
(11 Jul 1999) English/Nat Defiant Congolese rebels insisted on Sunday they will battle ...
published: 21 Jul 2015
Play in Full Screen
0:36
Today in history - Zambia’s President Frederick Chiluba abruptly ended his three-day state vist
New Vision TV offers analyzed news content on trending stories in Uganda, be it politics, ...
published: 28 Apr 2020
Play in Full Screen
8:06
Biography of Frederick Chiluba,Origin,Education, Career,Policies,Struggles,Trials,Family
Frederick Jacob Titus Chiluba was born on the 30th of April 1943. He was a Zambian politic...
published: 10 Jan 2020
Play in Full Screen
2:02
Presidential elections in Zambia, opposition candidate voting
(27 Dec 2001) 1. Pull out from polling station sign to wide of polling station 2. Cro...
published: 21 Jul 2015
Play in Full Screen
4:09
Zambian Elections
In Zambia, residents are poised to vote in presidential and local elections on Tuesday. In...
published: 19 Sep 2011
Play in Full Screen
3:00
ZAMBIA: FORMER PRESIDENT KAUNDA TO BE PLACED UNDER HOUSE ARREST
(31 Dec 1997) English/Nat International pressure has forced the Zambian government to m...
published: 21 Jul 2015
Play in Full Screen
2:27
Zambia’s Independence Celebrations
Zambia's president Michael Sata was absent from the country's golden jubilee celebrations ...
published: 27 Oct 2014
Play in Full Screen
1:40
WRAP Fmr president Chiluba cleared of corruption ADDS sbite, leaving court
(17 Aug 2009) 1. Wide shot of Lusaka Magistrates Court where Former Zambian President Fr...
published: 30 Jul 2015
Play in Full Screen

Frederick Chiluba

Frederick Jacob Titus Chiluba (April 30, 1943 – June 18, 2011) was a Zambian politician who was the second President of Zambia from 1991 to 2002. Chiluba, a trade union leader, won the country's multi-party presidential election in 1991 as the candidate of the Movement for Multi-party Democracy (MMD), defeating long-time President Kenneth Kaunda. He was re-elected in 1996. As he was unable to run for a third term in 2001, former Vice President Levy Mwanawasa instead ran as the MMD candidate and succeeded him. After leaving office, Chiluba was the subject of a long investigation and trial regarding alleged corruption; he was eventually acquitted in 2009.

Early life

He was born to Jacob Titus Chiluba Nkonde and Diana Kaimba and grew up in Kitwe, Zambia. Chiluba has married twice. Frederick Chiluba did his secondary school of education at Kawambwa Secondary School in Kawambwa, where he was expelled in the second year for political activities. He became a bus conductor, and later a politician due to his charismatic personality. He worked as city councilor before becoming an accounts assistant at Atlas Copco, and rose in his rankings, in Ndola where he joined the National Union of Building.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: frederick chiluba

Edit

On This Day: Real Madrid founded in 1902

Philenews 06 Mar 2024
Following are some of the major events to have occurred on March 6. ... 1902 – Real Madrid C.F. founded ... 2009 – Former Zambian vice president Christon Tembo, who led a cabinet revolt against former president Frederick Chiluba in 2001, died.
Edit

Between the BBC and T.B. Joshua 

This Day 11 Jan 2024
From the late President Frederick Chiluba of Zambia to the recently ousted President Omar Bongo of Gabon, to former President Joyce Banda of Malawi, to South African Zulu King Goodwill Zwelithini, to ...
Edit

In Zambia today, stealing a political party is big business

Mail Guardian South Africa 12 Dec 2023
Their reference point is Frederick Chiluba, who opened the door of accumulation for them but was side-tracked by a life of fancy suits and shoes. The nationalistic impulses of Chiluba’s successors ...
Edit

Understanding Hichilema’s talk of a coup plot in Zambia

Mail Guardian South Africa 13 Sep 2023
... — may seek to seize power via a coup, as their colleagues attempted to do against founding president Kenneth Kaunda in June 1990, and against former president Frederick Chiluba in October 1997.
Edit

Zambia country profile

Yahoo Daily News 24 Mar 2023
Map of Zambia ... FACTS. Capital ... 1991 - First multi-party elections in 23 years, Frederick Chiluba's Movement for Multiparty Democracy (MMD) wins ... 2001 - President Chiluba steps down over opposition to his bid to run for an unconstitutional third term ... ....
Edit

Israeli citizens must fight against judicial reform - opinion

The Jerusalem Post 21 Mar 2023
The opposite is true ... It can’t afford to ... (credit ... (credit ... Regime changes of the sort that produced dictators in the 1990s (such as Alberto Fujimori in Peru, Alexander Lukashenko in Belarus and Frederick Chiluba in Zambia) are no longer in vogue ... .
Edit

Zambia has killed the death penalty, but other rights remain on death row | Sishuwa Sishuwa

The Guardian 09 Jan 2023
Since independence from Britain in 1964, Zambia has executed 72 people, with 380 currently on death row . The country’s founding president, Kenneth Kaunda, sanctioned 64 executions, while his successor Frederick Chiluba approved eight ... Twitter.
Edit

Zambia has killed the death penalty, but other rights remain on death row

The Observer 09 Jan 2023
Since independence from Britain in 1964, Zambia has executed 72 people, with 380 currently on death row. The country’s founding president, Kenneth Kaunda, sanctioned 64 executions, while his successor Frederick Chiluba approved eight ... Dior Konaté ... .
Edit

The secrets of London by postcode: SW (South West)

The Spectator 07 Dec 2022
Buckingham Palace [Alamy] Still at the palace, when Frederick Chiluba, president of Zambia during the 1990s, visited Britain, he was granted the honour of a state banquet. Chiluba realised as he sat ...
Edit

This Day in History - October 31

Jamaica Observer 31 Oct 2022
Today is the 304th day of 2022. There are 61 days left in the year. TODAY'S HIGHLIGHT. 1671 ... OTHER EVENTS. 1517 ... 1731 ... Zambia holds its first multiparty elections, with Frederick Chiluba winning over independence leader and first president Kenneth Kaunda ... .
Edit

It Is Time to Re-Found the American Republic

Bitcoin Magazine 11 Oct 2022
Click here to subscribe now.An Era of Democratic Revolutions ... Kaunda also called a snap general election for the following year, which he roundly lost to Frederick Chiluba, the leader of the new Movement for Multi-party Democracy (MMD) ... Treasuries.
  • 1

Most Viewed

×