View Single Post
Old 10-30-2012, 12:36 AM   PM User | #2
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,384
Thanks: 18
Thanked 350 Times in 349 Posts
sunfighter is on a distinguished road
Code:
<?php
$xml = simplexml_load_file("People.xml");  // I made your code into a file named People.xml

$i = 0;
foreach ($xml as $person[])
{
	echo $person[$i]->attributes()->name . "<br />";
	echo $person[$i]->attributes()->bgcolor . "<br />";
	echo $person[$i]->attributes()->photo . "<br />";
	echo $person[$i]->desc . "<br />";
	echo $person[$i]->links . "<br />";
	$i++;
	echo '===================================<br />';
}
?>
sunfighter is online now   Reply With Quote