私はこのようなxmlファイルHAVA:xmlファイルのループをループしますか?
<name>
<entry>
<date>2012-03-18 13:53:23</date>
<ID>1</ID>
<category>questions</category>
<question>who are you?</question>
<answers>
<answer text='a man' id='1'/>
<answer text='a woman' id='2'/>
<answer text='an animal' id='3'/>
<answer text='an alien' id='4'/>
</answers>
<author>Gorge</author>
</entry>
</name>
を、私はループにすべてのフィールドをしようとしているが、私は答えのポイントを取得するときには、ループのすべての答えdosent
任意のヒントをどのように私ができますそれを管理する?
私が使用しています:
foreach($xml->entry as $entry){
echo "<p>";
echo "<strong>Author:</strong> ".$entry->author."<br/>";
echo "</p>";
}
を結果を得るために。事前 で
ありがとうパトリック
どのようにフィールドをループしていますか?コードですか? XSLTについて –
あなたのコードのどこかに 'foreach($ entry-> answers-> answer as $ answer)'がありますか? – Tomalak