1

我有一个复选框,我希望能够拥有它,以便它控制变量构造,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">
4

3 回答 3

2

你从来没有为你的复选框设置值,所以你的逻辑(isset($_POST['construction']) && $_POST['construction'] == "on")在检查时会失败$_POST['construction'] == "on"

如果只是查看复选框是否被选中的问题,只需使用isset(),不要担心检查值。

于 2012-07-30T16:39:33.727 回答
2

你实际上并没有给你的复选框一个值。value="on"从下面的 PHP 来看,您的复选框的属性列表中似乎缺少您。此外,else echo 'unchecked'复选框中的设置是不必要的。

于 2012-07-30T16:39:42.257 回答
1

尝试这个

你必须使用 isset($varname) 检查变量

<?php
  $isChecked = false;
  $constr = 0;
  if(isset($_POST['construction'])){
    if($_POST['construction'] == 'on'){
      $isChecked = true;
      $constr = 1;
    }      
    mysql_query("UPDATE config SET contruction = '$constr'") or die(mysql_error());

  }

?>

<!doctype html>

<html>
  <head>

  </head>

  <body>
    <form action='test3.php' method='POST'>
      <input name="construction" type="checkbox" id="construction" onChange="this.form.submit()" <?php if($isChecked) echo "checked='checked'"; ?> />
      <?php

      ?>
    </form>     
  </body>
</html>
于 2012-07-30T17:17:08.200 回答