> "Learn PHP" is still on my to-do list, and now I'm fumbling my way
> through a few simple PHP scripts.  I simply want to send an XML object
> to a PHP script that will write it to the server.  What PHP function
> will catch the end result of a XML.send() function?  No need for too
> many details, I'll read up on it, but if someone could name the proper
> function?

I don't think you need any special php function:

I don't know anything about flash, but I would guess XML.send() takes a file
name, or server path as a argument, so put this in that file:

$fp=fopen("myxml.xml","wb");
fwrite($fp,$HTTP_RAW_POST_DATA);
fclose($fp);
echo "Done saving";
-- 
-------------------------------------------------------------
Scott Haneda                                Tel: 415.898.2602
<http://www.newgeo.com>                     Novato, CA U.S.A.


_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to