okay I have an xml sheet and I want to put the points elements into an array with the names as the keys? using php5 and dom or simplexml. any help would be great, thanks
xml sheet:
<?xml version="1.0" encoding="iso-8859-1"?>
<profiles>
<rider name="Dave Martin">
<picture>hello</picture>
<points>8</points>
<info>thinks hes a pro</info>
<quote>hello there</quote>
<age>32</age>
</rider>
<rider name="Steve McCaw">
<picture>so so young</picture>
<points>4</points>
<info>was a pro</info>
<quote>hi there</quote>
<age>42</age>
</rider>
</profiles>