loadVariables works with GET can't to get it to work with POST

OK im working on a mail form in flash i got it working using LoadvariablesNum with GET but get has the character limitations. I want to use POST

I tried the kirupa turtotial on email form n flash but i can’t get it to work…

I did get this to work. Using 3 boxes and a 4th to post the error messages and what not. Im curious to see if anyone could tell me how to do the same thing with POST and what the post variable is for the php script. and how to get POST to put a variable back to flash from the php like in the script i post below.

Flash script

on (release) {
if (!email.length || email.indexOf("@") == -1 || email.indexOf(".") == -1) {
results = “Please check your e-mail address.”;
} else if (!comments.length) {
results = “Please enter your comments.”;
} else if (!name.length) {
results = “Please enter your name.”;
} else {
loadVariablesNum(“http://phoket.net/mailform.php”, 0, “GET”);
results = “Sending Data…”;
}
}

php script

<?php
$TextVariable = ‘&results=’;
$response = ‘Data Sent. Thank You…’;
echo $TextVariable;
echo $response;
$recipient .= “[email protected]” ;
$subject = “Your Automail”;
$message .= “Name: $name
Email: $email
Comments: $comments”;
$headers .= “From: $name <$email>n”;
mail($recipient, $subject, $message, $headers);
?>

ok im no pro here thats why im ripping our my hair trying to get this to work…

but if anyone could tell me how to do this basic idea using POST my hair would be forever in debt to you.

thanks