prognoob
January 5th, 2005, 10:07 PM
<html>
<head>
<title>an html form including a select element</title>
</head>
<body>
<form action = "eg9.5.php" method = "POST">
<input type = "text" name = "user">
<br>
<textarea name ="address" rows = "5" cols ="40">
</textarea>
<br>
<select name = "products[]" multiple>
<option>sonic screwdriver
<option>tricoders
<option>ORAC AI
<option>HAL 2000
</select>
<br>
<input type = "submit" value ="click here to submit">
</form>
</body>
</html>
and the script
<html>
<head>
<title> listing 9.5 reading input from a form in listing 9.4</title>
</head>
<body>
<?
echo "welcome:".($_POST['user']);
echo "<br>your address is:".($_POST['address']);
echo "<br>Your products choices are:";
foreach($products as $value)
{
echo "$value";
}
?>
</body>
</html>
this is the error i get when i fill out the above form and click submit.
"welcome: pedro
your address is: california beverly hills 90210
Your products choices are:
error: Warning: Invalid argument supplied for foreach() in c:\program files\apache group\apache\htdocs\eg9.5.php on line 11"
i've spent about five hours just on that and still can not figure out whats wrong with it .
<head>
<title>an html form including a select element</title>
</head>
<body>
<form action = "eg9.5.php" method = "POST">
<input type = "text" name = "user">
<br>
<textarea name ="address" rows = "5" cols ="40">
</textarea>
<br>
<select name = "products[]" multiple>
<option>sonic screwdriver
<option>tricoders
<option>ORAC AI
<option>HAL 2000
</select>
<br>
<input type = "submit" value ="click here to submit">
</form>
</body>
</html>
and the script
<html>
<head>
<title> listing 9.5 reading input from a form in listing 9.4</title>
</head>
<body>
<?
echo "welcome:".($_POST['user']);
echo "<br>your address is:".($_POST['address']);
echo "<br>Your products choices are:";
foreach($products as $value)
{
echo "$value";
}
?>
</body>
</html>
this is the error i get when i fill out the above form and click submit.
"welcome: pedro
your address is: california beverly hills 90210
Your products choices are:
error: Warning: Invalid argument supplied for foreach() in c:\program files\apache group\apache\htdocs\eg9.5.php on line 11"
i've spent about five hours just on that and still can not figure out whats wrong with it .