我无法提交已检查的一些表单栏。当我提交时,它只提交该表格的最后一栏。 请帮我提交一下检查栏吧?
<table border="1" align="left">
<?php
echo '<th>Stock Name</th>';
echo '<th>Price</th>';
echo '<th>Amount</th>';
echo '<th>Buy ?</th>';
?>
<form method=POST action=inputer.php >
<input type=hidden name=idcustomer value="<?php echo $idcustomer ?>" />
<?php
$show=mysql_query("SELECT * FROM `tblStock`");
while($result=mysql_fetch_array($show))
{
?>
<input type=hidden name=idstockname value="<?php echo $result[0] ?>" />
<?php echo'<tr><td>'.$result[1].'<input type=hidden name=stockname value='.$result[1].'/></td>';
echo' <td>'.$result[3].'<input type=hidden name=price value='.$result[3].'/></td>';
echo' <td><input type=number name=amount /></td>';
echo' <td><input type=checkbox name=choose />Yes</td>
</tr>';
}
?>
<?php
echo '</table><input type=submit value=choose />';
?></form>