I'm a bit stuck and hope someone can lend a hand. I cannot get the value of, Choice, using simplexml.
Here's the xml:
PHP Code:
<Choice ID="1000">
<Select NAME="BOB/>
Monday
</Choice>
<Choice ID="1001">
<Select NAME="Mary/>
Tuesday
</Choice>
I am looping through, trying to get the value of Choice, but I get the array of Select. I would like just get the days.
PHP Code:
$arr = array();
foreach ($Choice AS $choice){
$arr[] = $choice;
}
print_r($arr);
Any ideas?