I have a client-side script written in jQuery that is sending text/xml data to the server, but I can\'t figure out how to parse the request since the data is not a query str
I think you want something like:
$xml_text = file_get_contents("php://input"); $xml = simplexml_load_string($xml_text);