Combo Box Help

Also in the php file is it possible to Edit the Email address with the help of some kind of external file.

I have no idea how to do this. Can anyone help in this matter?

Here is the As Code and the Php code.


<?PHP
$theName = $_REQUEST["theName"];
$theEmail = $_REQUEST["theEmail"];
$my_cb_month = $_REQUEST["my_cb_month"];
$to = "HOT@gmail.com";
$subject = "DHDHHD";
$message = "Name:" . $theName;
$message .= "
Email:" . $theEmail;
$message .= "
\Date Of Booking = " . $my_cb_month ;
$headers = "From: ". $theName . " " . "<" . $theEmail. ">
";
$headers .= "Reply-To: " . $theEmail. "
";
$headers .= "Return-path: ". $theEmail;
$sentOk = mail($to,$subject,$message,$headers);
echo"sentOk=" . $sentOk;

?>


Please help.

Regards

Worthless