Eddie Hyndman

Home / A Hero’s Tale Retold / Eddie Hyndman

Eduardo Filomeno Hyndman #25473

Birth: 1926, Hong Kong
Death: 31 December 1941, Died in battle against the Japanese during the battle for the defense of Hong Kong. He is believed to have been the youngest Volunteer and if he was born in 1926 he must have falsified his age to join as a sapper at 15. However, a website dedicated to him says he died at the age of 17.

Details are in the restricted website with ID #25473

1 function special_tooltip_shortcode($atts) { // Default attributes $atts = shortcode_atts(array( 'keyword' => 'Test Tooltip', 'id' => '123', 'items' => '', ), $atts); // Escape output $keyword = esc_html($atts['keyword']); $id = (int) $atts['id']; // Clean items: remove empty lines $lines = preg_split('/\r\n|\r|\n/', $atts['items']); $clean_lines = array_filter(array_map('trim', $lines)); // Trim each line, remove empty $items = ''; foreach ($clean_lines as $line) { $items .= esc_html($line) . '
'; } // Fixed base URL $url = "https://www.macaneselibrary.org/macfams/priv/english/"; // Build output $output = "
{$keyword} #{$id}
{$keyword} #{$id} {$items} Details are in the private website: Already logged in?
Register or login?
"; return $output; } add_shortcode('specialtooltip', 'special_tooltip_shortcode');