|
查看: 768|回复: 2
|
[settled]求助multiple checkbox selection的php coding
[复制链接]
|
|
|
我的问题是不能一次过show完所有的选择。请高手帮我改一改以下的 的coding 如下:
order。php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" c />
<title>Order Fortm</title>
</head>
<body><br/>
<h4> </h4>
<form action="process.php" method="post">
<p>
<select name="item">
<option> aint</option>
<option>Brushes</option>
<option>Erasers</option>
</select>
Quantity:
<input name="quantity" type="text" />
<input type="submit" />
<br >
</p>
<p><br >
<input name="checkbox" type="checkbox" id="panadol" value="panadol" />
panadol<br >
<input name="checkbox" type="checkbox" id="vitamin c" value="vitamin c" />
vitamin c <br >
<input name="checkbox" type="checkbox" id="calcium" value="calcium" />
calcium</p>
</form>
</body>
</html>
------------------------------
process。php:
<html><body>
<?php
$quantity = $_POST['quantity'];
$item = $_POST['item'];
$medicine =$_POST['medicine'];
//foreach($_REQUEST['checkbox'] as $key => $ medicine);
echo "You ordered ". $quantity . " " . $item . ".<br />";
echo "You ordered ". $medicine . ".<br />";
?>
</body></html>
[ 本帖最后由 mkchuui 于 11-1-2008 03:57 PM 编辑 ] |
|
|
|
|
|
|
|
|
|
|
发表于 11-1-2008 04:01 PM
|
显示全部楼层
把
<input name="checkbox" type="checkbox" id="panadol" value="panadol" />
<input name="checkbox" type="checkbox" id="vitamin c" value="vitamin c" />
<input name="checkbox" type="checkbox" id="calcium" value="calcium" />
换成
<input name="checkbox[]" type="checkbox" id="panadol" value="panadol" />
<input name="checkbox[]" type="checkbox" id="vitamin c" value="vitamin c" />
<input name="checkbox[]" type="checkbox" id="calcium" value="calcium" />
process.php
echo "You ordered ". $quantity . " " . $item . ".<br />";
foreach($_REQUEST['checkbox'] as $key => $medicine) {
echo "You ordered ". $medicine . ".<br />";
} |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 12-1-2008 04:02 PM
|
显示全部楼层
|
|
|
|
|
|
|
|
| |
本周最热论坛帖子
|