Passing variables from Flash to PHP [form]

Hi

I have a question.
How do you pass variables from flash to php?
What I wanna do is, get the username and password entered in this form made in flash, when the submit button is hit, it will open and send these variables to login_processor.php. If the info is put in correctly, it will take them to a different page.

The login_processor.pgp works for html form, but not for flash. In flash I have two input texts, and I gave them each their own var names.

This code I assigned to my submit and reset button:

submit_btn.onRelease=function () {
getURL(“login_processor”, “_self”, “POST”);
}

reset_btn.onRelease=function () {
usernameText.text="";
passwordText.text="";
}

stop();

this script is not working, even though you put in the right info, it will take you to login_processor.php and that’s it, you’re not even logged in.

any ideas?

thanks alot