Jump to content

SimpleXML Problem $_POST['data']


Andieuk

Recommended Posts

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']);

 

 

 

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.