How do I retrieve this variable?

Hey,

Ok using a simple form as I want to test out things before implementing them into my website. Anyway, just wondered how I retrieve the variables from flash mx components to send to my PHP form?

I have attached the file, not quite sure what I am missing? I’ve used the getValue function but still not showing it on my php script which is the following:


<?php
$to = "me@me.com";
$msg = "$name has requested the following: $listbox.

";
$msg .= "Their email address is $email.

";

if ($tickbox) {

	$msg .= "They wish to be contacted about future promotions.

";

}

$subject = "Website: ".$listbox;


mail($to, $subject, $msg, "From: My web site
Reply-To: $email
");
?> 

Cheers,
Chris