Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
 $aid= $_GET["aid"];
 echo $xml->orders->ITEM["$aid"]->name;

With this script I'm trying to display the value of an XML page. The variable $aid is the number of elements. This can be 0 to 1000.

Only nothing displays when I run this script.

This works fine

 $aid= $_GET["aid"];
 echo $xml->orders->ITEM[1]->name;
share|improve this question

2 Answers

You're assigning the key wrong, use just the variable name without the apostrophes.

echo $xml->orders->ITEM[$aid]->name;
share|improve this answer
Thanks. only this doesn't work. – user1595774 Aug 19 '12 at 10:34
"$aid" is same as $aid except "$aid" is bad in terms of performance.I think that's what Kasia tried to say. – Ayesh K Aug 19 '12 at 23:08

Use an integer key, values from $_GET are strings.

$aid = (int) $_GET["aid"];
echo $xml->orders->ITEM[$aid]->name;

With SimpleXML, integer values denote an element in a collection (e.g. 0 is the first, 1 is the second) whereas string values denote attributes of that name.

I'm assuming the value isn't just a number (since SimpleXML can recognise that, even as a string).

share|improve this answer
Thanks that works. – user1595774 Aug 19 '12 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.