I need help. I can not for the life of me figure out how to add a second (or even a third) e-mail recipient to my script on a form. This is what I have:
Name: $form_name
Address: $form_address
Phone: $form_phone
E-mail: $form_email
";
$email = "anyone@anywhere.com";
With just the one line it works no problem. I have tried side by side with a semi colon between but only the first one recieved it, a comma returns a syntax error, and I have stacked them like this:
$email = "anyone@anywhere.com";
$email = "anyone@anywhere.com";
and that didnt work either. Any suggestions?