Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<form action="process.php" method="post">
<input type="checkbox" name="send2b">Send the mail to Mr. B
<textbox name="message"></textbox>
etc.
if ($_POST['send2b']) {
$to = "b@mydomain.com";
} else {
$to = "a@mydomain.com";
}
mail($to,"Form message from web site",$_POST['message']);
Oops - thats what I get for trying to write at 1 a.m.!trollacious said:The form element is <textarea>, not <textbox>.