我已经编写了php代码来生成动态复选框列表。我想接受复选框选中的值并使用它更加明确地在php本身显示另一个复选框列表。
//这里是代码......
<?php
$db_value = $_POST['database'];
if($db_select = mysqli_select_db($conn,$db_value)) {
echo "selected database ".$db_value."\n";
}
echo "<br>";
echo "\n"." Select Tables : ";
$table = "show tables from $db_value";
$result = mysqli_query($conn,$table);
while($row = mysqli_fetch_array($result)){
echo "<br>";
echo "<input type='checkbox' name='checklist[]' value='{$row[0]}'>{$row[0]}</input>";
}
echo "<br>";
echo "<input type='submit' value='validate' name='ok'>";
?>
我想接受姓名=&#39;确定&#39;并使用PHP打印另一个复选框。我该怎么办?