I have 2 problems.
(1)
I wrote an iphone app to send updated GPS data from iphone periodically(maybe period=1s).
I wrote these lines in server's php
<html>
<body>
<?php
$xmlFile = file_get_contents("php://input");
echo $xmlFile."<br>";
echo "Hello World!";
?>
</body>
</html>
And in iphone side, I implement the NSURLConnection delegate method like
connection: didReceiveData:
by printing the data out in XCode console to test whether the xml string has been sent to server. And I receive the following in the XCode console successfully,
<html><body><openingTagOfXML>the xml string sent.</openingTagOfXML><br>Hello World!</body></html>
But, when I was running the app, I visit www.mywebsite.com/index.php(i.e. the php shown above), only Hello World! is shown on the page! I suppose the xml code can be displayed out on client browser, too. Why? Is it because the xmlFile variable is always changing?
(2)When I then use SimpleXMLElement, or some built-in function like simplexml_load_string, then 500 Internal Server Error occurs on the webpage, like
$xml = new SimpleXMLElement($xmlFile);
echo $xml->asXML();
and also, when I tried the code below,
$xmlFile = file_get_contents("php://input");
$xfstr = $xmlFile;
echo $xfstr."<br>";
$xml = <<<XML
$xfstr
XML;
echo $xml;
$doc = new DOMDocument();
if($doc->loadXML($xml))
{
echo "XML loaded! ";
}
else
{
echo "XML not loaded! ";
if(empty($doc)){
echo "XML is empty. ";
}else{echo "XML not empty. ";}
}
In the returned data in my XCode console, it is always displayed the "XML not loaded!" and "XML not empty"(but, please note that I can see the xml code which I have sent to server on my XCode console).
I just don't know why it can be loaded!