Hello all,
I have found these errors in my error log:
[05-Aug-2009 12:57:27] PHP Warning: SimpleXMLElement::__construct() [<a href='simplexmlelement.--construct'>simplexmlelement.--construct</a>]: ^ in /home/mojo/public_html/shackupload.php on line 37
The funny thing is I had about 200 of the above in my error log all with the same timestamp! What is going on and why so many?!
The lines in question is this:
if(!(substr($res, 0, 6)=='Failed')){
$xml = new SimpleXMLElement($res) or die('Error creating a SimpleXML instance');
$imagelink = (string) $xml->image_link; // This is the image link
$_SESSION['shack_link'] = $imagelink;
echo 'done';
}