Page 1 of 1

question about flash php xml

Posted: Tue Nov 18, 2008 2:34 am
by lukelee
I am making a flash form, which include, name, phone, email, radio button,checkbox... when people click submit, I want this form be generated to an xml file through php. I know how to send email through php. but really no idea how to generate an xml through php. can anyone help please?

here is the data I collect from flash:

$subject = "My Flash site reply";
$name = $_POST["ename"];
$message = $_POST["emessage"];

can anyone please show me how to continue?