Andieuk Posted July 2, 2009 Share Posted July 2, 2009 I'm pretty new to this thing called XML so I have scratched my head a bit. My users are to paste a xml string in to a form for processing, my problem is that when I load the xml direct from a file data.xml on the server using $xml = simplexml_load_file('data.xml']); My data is parsed fine and all works well. When I try to use the same xml posted via a form $_POST['data'] I get an error I/O warning : failed to load external entity.The 2 code snippets I have tried to use are below $xml = simplexml_load_file($_POST['RaidString']); $xml = simplexml_load_string($_POST['RaidString']); Quote Link to comment https://forums.phpfreaks.com/topic/164489-simplexml-problem-_postdata/ Share on other sites More sharing options...
Andieuk Posted July 2, 2009 Author Share Posted July 2, 2009 I found the answer myself, the attributes in the posted XML had the \" in them when passed to the simplexml object. $_POST['Log'] = trim(str_replace("&", "and", html_entity_decode($_POST['Log']))); resolved my problem. Quote Link to comment https://forums.phpfreaks.com/topic/164489-simplexml-problem-_postdata/#findComment-868088 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.