Basic Writing to XML via php

Hey all,
I’m trying to write a little flash movie that displays xml data. I’m also hoping to have a form with only 2 fields that a user can add new data to the xml file that is then displayed in the swf file. I know I probably need a php script in the middle but am having trouble getting started.

This could be completely wrong but I’m making an attempt…

In my flash file, I submit the values of the text fields via this code on a submit button:

 
on (release) {
 form.loadVariables("myform.php", "POST");
}

Here is where I get stumped. I have no idea how to break those values apart in php and write them to an xml file. Can anyone lend some expertice? thank you in advance