|
Posted by tomseye on 11/18/88 11:40
I have a simple form to collect user selections in html form. I am
pretty new to php...how can I send the user's checkbox selects to me
in an email...I am struggling with buiding an array to send this info
mail() function. Any help appreciated... Thanks very much!
tomseye
<body>
<br>
<b>Please select the information you'd like to
receive:</b>
<br>
<form method="post"
action="checked2.php"><br>
<input type="checkbox" name="foo[]"
value="Auto">Auto Insurance
<input type="checkbox" name="foo[]"
value="Life">Life Insurance
<input type="checkbox" name="foo[]"
value="Home">Home Insurance
<br><br>
<input type="submit" value="Submit">
<input type="reset" value="Clear">
</form>
<?php
echo "You have chosen to receive information on: \n\n";
// check to be sure at least one option was selected<br>
$foo = $_POST['foo'];
if (count($foo) > 0) {
// loop through the array
for ($i=0;$i<count($foo);$i++) {
// do something - this can be a SQL query, echoing data to the
browser, or whatever
echo "<li>$foo[$i]\n";
} // end "for" loop
} // endif
echo "<br>";
echo "insurance products.\n";
?>
:lol:
http://eye.cc php newsgroups
Navigation:
[Reply to this message]
|