11 lines
487 B
PHP
Executable File
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); }
|
|
|
|
?>
|