Using simplexml_load_string() how do I get \"ForgotPassword\" from the following XML?
Are you wanting to get the name of the root node?
$xml = simplexml_load_string($str); echo $xml->getName();