//Open the XML file used to store messages
$ guestbook = simplexml_load_file('DB/guestbook.xml');
foreach($guestbook->thread as $th) //Loop to read each thread tag in the XML data
{
echo "
Title: ".$th->title."
";
echo "
Author: ".$th ->author."
";
echo "
Content:".$th->content."
";
echo "
";
}
?>
"http://www.w3.org /TR/html4/loose.dtd">
Post a new comment
< ;/body>