これは私のXMLがどのように見えるかです
<?xml version="1.0" encoding="UTF-8"?>
<item>
<date>May 2013</date>
<html>http://www.link.to/html.html</html>
</item>
私はこれをPHPで行いますが、うまくいきます
$file = '../modules/xml/nl-archive.xml';
$xml = simplexml_load_file($file);
$string = '';
foreach($xml as $item){
$string .= '<a href="'.$item->html .'" ><li>'.$item->date .'</li></a>';
}
日付タグとhtmlタグの内容をアイテムタグごとに表示しようとしています。グーグルでいじくり回して、正しく理解できません。私は何を間違っていますか?