Files
pae.co.at/other/archive/version_01/html/html_centralbankissues.php
2017-03-02 21:57:21 -06:00

11 lines
487 B
PHP
Executable File

<?php
###################################################################################################### set up this page
global $_MENU,$_WORDS,$_ERRORS; // globals we will need
$data = xml_parse_file($_DOC_ROOT.'/data/pages/centralbankissues.xml');
$data = isset($data['page'][$_LANG]) ? $data['page'][$_LANG] : ''; // only get the part that is for our language
if(empty($data)) { print $_ERRORS['pagenotfound']; }
else { html_print_xml_page($data); }
?>