Roll Of Honour

[insert_php] /* Author: Gerry Haran * Original Program name: ListWW1ROH1.php * Bastardised version for WordPress: roll-of-honour * Sub menu in WordPress : Roll Of Honour * Menu structure in WordPress : World War 1 \ Roll Of Honour \ * Description: Program builds the roll of honour of servicemen who died in ww1 * Linked pages: Each name links to page Service Biography which shows service biography for serviceman selected by user * * Functions called: getROHNames() * * Rev 1.1 – contains 2/3rd of researched data from June Haran and Carol Short * Backed up as RollOfHonour.wp 21 April 2016 * * Rev 1.2 – last 1/3rd of data from Lynne Black added 12 December 2017 * Backed up as RollOfHonour_12Dec2017.wp on 12 December 2017 * * Date of original program : 25 September 2014 * Date of WordPress program : 19 March 2016 * * The user is presented with a list of all the servicemen who died in ww1 * Click a name to view the service biography for that serviceman name. */ echo “

“; echo “The following is a list of the East Bridgford servicemen who died in action in World War 1.”; echo “

“; echo “

\n”; echo “

\n”; echo “
\n”; echo “

“; echo “Click on a name to obtain details.”; echo “

“; $ROHInfo = getROHNames(); for ($i=1;$i<=sizeof($ROHInfo);$i++) { $forename=$ROHInfo[$i]['forename']; $middlename=$ROHInfo[$i]['middle']; $surname=$ROHInfo[$i]['surname']; $fullname=$forename." ".$middlename." ".$surname; $ebindex=$ROHInfo[$i]['ebID']; echo ("
\n”); } [/insert_php]