Занимать место громоздким кодом XML будет неудобно. Напишу примерную структуру документа.
<body>
<p>
<t> text1 </t>
<t> text2 </t>
</p>
<p>
<t> text3 </t>
<t> text4 </t>
</p>
</body>
Вот мой парсинг к этому документу
<?php
$document = new DOMDocument();
$document->preserveWhiteSpace = FALSE;
$document->load( '2222.xml' );
$sites = $document->getElementsByTagName( "p" );
//site
foreach( $sites as $site ) {
$nameofsites = $site->getElementsByTagName( "t" ); //name
$name = $nameofsites->item(0)->nodeValue;
echo "<br /><br /> $name";
}
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
?>
Выводит нулевой элемент <t> из первого <p> и нулевой <t> со второго <p>
Вывод на экран с помощью моего кода:
text1
text3
ВОПРОС: Как вывести на экран все содержимое тег <t> из первого <p> построчно?
Пожайлуста, подскажите!