Dynamic Text Variabes to a form PHP script for emailing

If a user makes a number of selections from visual indicators on frame 1 of a Flash 8 file and textual descriptions of those selections are then actionscripted into dynamic text boxes as text values in a form on frame 2, can the text values of the dynamic text boxes be given variable names that can be sent to and processed by a server-side PHP script as regular input type text box variables would be processed?

Example:
User selects 3 images on frame 1 via a mouse on(release) event.
the actionscript being:
on(release) {
form.dynamicTextBox1.text == “Image 1”;
}
on(release) {
form.dynamicTextBox2.text == “Image 2”;
}
on(release) {
form.dynamicTextBox3.text == “Image 3”;
}

On the form frame (frame 2) would be a movie clip (form_mc with instance name form) with the normal Name, Email, Message input type text boxes along with dynamic text boxes dynamicTextBox1, 2 and 3.

On the form Submit button the actionscript would be:
on(release) {
var sendVar = new LoadVars ();
var receiveVar = new LoadVars ();

sendVar = userName.text;
sendVar = userEmail.text;
sendVar = userMessage.text;

sendVar = dynamicText1.text;
sendVar = dynamicText2.text;
sendVar = dynamicText3.text;

sendVar.sendAndLoad(mailscript.php, receiveLoad, 'POST");

}

If the input text boxes are give variable names (i.e. var userName, var userEmail and var userMessage) can the dynamic text boxes be given variable names also that can be passed to the server-side PHP script (i.e. var dynamicText1, var dynamicText2 and var dynamicText3)
where the PHP might look like:

<?php
$to = "me@mywebsite.com"
$subject = “email enquiry”
$name = $POST[‘userName’};
$email = $POST[‘userEmail’};
$message = $POST["userMessage’};
$userSelction1 = $POST[‘dynamicText1’};
$userSelction2 = $POST[‘dynamicText2’};
$userSelction3 = $POST[‘dynamicText3’};

$body = “From: $name
Email: $email
Message:
$message
$userSelection1
userSelection2
userSelection3”;

mail:($to, $subject, $body);
?>

Would this work? All indications I have seen through many Flash/PHP email tutorials indicate not using dynamic text boxes but components like combo boxes etc use variables and not input boxes.

Any suggestions and corrections would be greatly appreciated!