ya, i'm working on a walk around now, i just wanted to get the function up and running in it's most basic before i started supping it up, as it were. i was thinking about using a switch and assigning each of my radio buttons a value from 1 to 3... On Mon, Apr 26, 2010 at 4:35 PM, Benjamin Hawkes-Lewis < bhawkeslewis@xxxxxxxxxxxxxx> wrote: > [off-list] > > On Mon, Apr 26, 2010 at 8:16 PM, Watson Blair <bestudios.wb@xxxxxxxxx> > wrote: > > the file send.php is: > > > > <?php > > > > $subject =$_POST"subject"; > > > > $message=$_POST"message"; > > > > $name=$_POST"name"; > > > > $from=$_POST"from" > > > > $mail_from=$_POST"from"; > > > > $to =$_POST"to"; > > > > $header = "From: {$name} < {$from} >"; > > > > $send_contact=mail($to,$subject,$message, $header); > > > > if($send_contact){ > > echo "Thank you for Contacting Us!"; > > } > > else { > > echo "An error occurred while sending your message, review your > information > > and please try again."; > > } > > ?> > > Please note that code does not sanitize your inputs and would > therefore be vulnerable to email header injection: > > http://www.nyphp.org/PHundamentals/8_Preventing-Email-Header-Injection > > -- > Benjamin Hawkes-Lewis >