Wednesday, September 3, 2008

php simple xml read

<?
if (!$myxml=simplexml_load_file('process.xml')){

    echo 'Error reading the XML file';

    }
        echo $chaptername=$myxml->chapterid->name;
        echo "<br>";
       
    foreach($myxml->table as $movie){

        echo 'name: ' . $movie . '<br />';   

       

    }

?>


No comments:

Post a Comment