This is really baffling me. I've never used XML before, so I'm just playing about (it's the middle of the night of course...!)
The code:
$xml_string = "<?xml version="1.0" encoding="utf-8" ?><result>
<status>fail</status>
<error>
<code>192</code>
<message>Previous command still being processing</message>
</error>
</result>"
$rss = simplexml_load_string($xml_string);
print $rss->result->status;
I'm kinda baffled... Every tutorial that I have read seems to suggest that this will print "fail" - but yet it doesn't...? Can someone point me in the right direction?
Thanks in advance.