I am having a problem with PHP and XML files.?

  • Thread starter Thread starter dhamen p
  • Start date Start date
D

dhamen p

Guest
I have got this two fles.
am not getting any results. Is there anyone can help me. Thanks.

catalog.xml

<?xml version="1.0" encoding="UTF-8"?>

<items>
<product>
<id>TOMATOSOUP</id>
<title>Creamy Tomato</title>
<description>This is very popular tomato soup</description>
<img></img>
<price>4.55</price>
</product>
<product>
<id>Tinned Tomato</id>
<title>Creamy Tinned Tomato</title>
<description>This is very very popular tomato soup</description>
<img></img>
<price>4.58</price>
</product>

</items>

index.php

<?php

$filename = '../catalog.xml';

$contents = file_get_contents($filename);

$xml = new SimpleXMLElement($contents);

foreach ($xml as $product)
{
echo "<li>$product->title </li>";
}
?>
 
Back
Top