I need to parse this string:
<RESPONSE>
<status>200</status>
<credits>100.00</credits>
</RESPONSE>
It seems XML but I think that it is not. In effect, no other tags or other.
I need to parse and extract the , so I can print an output, for example,
"<p>Available credits: '.$credits.'</p>"
Of course I tried SimpleXMLElement but it doesn't recognize the XML.
Could you help me?
Thank you