我编写了一些代码,用数据库中的数据填充单选按钮。我在这段代码中遇到了一些问题,其中一个表单允许我一次选择多个单选按钮,这是不应该的。另一个问题是,除了按钮本身之外显示的文本是表中“customerID”列中的值,而应该是表中“lastName”列中的值,而单选按钮的值应该是表中的值“customerID”字段看起来不错。如果您想知道表中列的实际结构,“customerID”列是第一个,“firstName”是第二个(但在这种形式中不需要),“lastName”是第三个。
这是我当前的代码:
<?php
$conn = mysql_connect("localhost", "twa312", "dam6av9a");
mysql_select_db("warehouse312", $conn)
or die ('Database not found ' . mysql_error() );
$sql = "select customerID, lastname from customer";
$rs = mysql_query($sql, $conn)
or die ('Problem with query' . mysql_error());
while ($row=mysql_fetch_array($rs)) {
$options .= '<input type="radio" id="custID" name="custID" value="'.$row[0].'" />'.$row[1];
}
?>
<form method="GET" action="task8.php" id="custinfo">
Choose name:<?php echo $options; ?><br>
<p><input type="submit" name="submit" value="Submit"/> <input type="reset" value="Reset" />
</form>
解决这个问题的任何帮助都会非常棒!