Jump to content

Saving XML to server ~ sent from Flash to PHP


bubbadawg

Recommended Posts

Hello All ----

I am relatively new to PHP and need some minor assistance. I am passing from Flash to PHP an XML object which I only need PHP to save on the server. The XML file that is being saved is close to correct but has some extraneous characters inserted (" \ "). I am guessing I need to escape or parse them, but not really sure. Here is my PHP code:

[code]
<?php
    $filename = "images.xml";
    $receivedData = $_POST['xmlData'];

    $fp = fopen($filename, "w");
    fwrite($fp, $receivedData);
    fclose($fp);
?>
[/code]

Here is the a sample of the XML that is saved on the server:

[code]
<images>
<album description=\"Description of New Album\" title=\"New Album\" lgPath=\"/\" tnPath=\"gallery//\" tn=\"gallery/sample_tn.jpg\">
<img title=\"Title Here\" imgName=\"sample.jpg\" />
</album>
</images>
[/code]

Any help is greatly appreciated. Thanks for any and all replies.
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.