Hi all so I am building this and it works on my stand alone but it doesn't work on the server. Can anyone tell me why? It would be much appreciated.
<?php
#create a ul of glossary terminology
#load glossary list xml document into a SimpleXML object
$sx = simplexml_load_file( "glossary_list.xml" );
foreach( $sx -> title as $title )
{
echo( "<ul>" );
echo( "" . $title -> def . "" );
echo( "<li>" . $title -> meaning . "</li>" );
echo( "</ul>" );
}
?>