initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
###################################################################################################### set up this page
global $_MENU,$_WORDS,$_ERRORS; // globals we will need
$data = xml_parse_file($_DOC_ROOT.'/data/pages/emailfluency.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); }
?>