我有一个复选框,我希望能够拥有它,以便它控制变量构造,0 表示无构造,1 表示构造。并输出任何当前值,以便用户可以查看是否检查了构造。我意识到复选框不会发布“未选中”的值,我已经尝试了很多事情。我不确定我的逻辑在哪里有缺陷。
<input name="construction" type="checkbox" id="construction" onChange="this.form.submit();" <?php if ($row_config['construction'] == 1) { echo ' checked'; } else { echo ' unchecked'; } ?>>
<?php
if ($_POST) {
// 0 = off
// 1 = on
$constr = (isset($_POST['construction']) && $_POST['construction'] == "on") ? 1 : 0;
mysql_query("UPDATE config SET construction = '$constr'") or die(mysql_error());
redirect('index.php');
}
?>
我认为问题出在将数据输出给用户的某个地方。
固定版本,谢谢大家!
<?php
require('framework/ui_framework.php');
page_protect();
$config = mysql_query("SELECT construction FROM config") or die(mysql_error());
$row_config = mysql_fetch_assoc($config);
$isChecked = false;
$constr = 0;
if(isset($_POST['construction'])){
if($_POST['construction']) {
$isChecked = true;
$constr = 1;
mysql_query("UPDATE config SET construction = '".$constr."'") or die(mysql_error());
}
} else {
$isChecked = false;
$constr = 0;
mysql_query("UPDATE config SET construction = '".$constr."'") or die(mysql_error());
}
?>
<input name="construction" type="checkbox" id="construction" onChange="this.form.submit();" <?php if($isChecked) echo "checked='checked'"; ?> value="on">