复选框无法正常工作。它有3个复选框。当我选择所有三个复选框时,我没有收到任何错误。但是当我选择1或2复选框时,我收到的错误是这样的:
注意:未定义的索引:第16行的C:\ wamp \ www \ test \ secpage.php中的chke
<html>
<body>
<table>
<form method="post" action="secpage.php">
<tr>
<td colspan="2"><center><h4>Registartion Form</h4></center></td>
</tr>
<tr>
<td>Username : </td>
<td><input type="text" name="txtname" value=""/></td>
</tr>
<tr>
<td>Password : </td>
<td><input type="password" name="txtpass" vale=""/></td>
</tr>
<tr>
<td>Email : </td>
<td><input typ="text" name="txtemail" value=""/></td>
</tr>
<tr>
<td>Address : </td>
<td><textarea name="add" /></textarea></td>
</tr>
<tr>
<td>Subjects : </td>
<td><input type="checkbox" name="chkm" value="Maths"</td>Maths
<td><input type="checkbox" name="chks" value="Science"</td>Science
<td><input type="checkbox" name="chke" value="English"</td>English
</tr>
<tr>
<td>Gender : </td>
<td><input type="radio" name="gen" value="Male"/>Male
<input type="radio" name="gen" value="Female"/>Female
</td>
</tr>
<tr>
<td colspan="2"><center><input type="submit" value="Submit"/></center></td>
</tr>
</body>
</html>
这是php页面:
<html>
<body>
<?php
$uname=$_POST["txtname"];
$pass=$_POST["txtpass"];
$email=$_POST["txtemail"];
$add=$_POST["add"];
$subm=$_POST["chkm"];
$subs=$_POST["chks"];
$sube=$_POST["chke"];
$gen=$_POST["gen"];
?>
<table>
<tr>
<td>Username : </td>
<td><?php echo $uname; ?></td>
</tr>
<tr>
<td>Password : </td>
<td><?php echo $pass; ?></td>
</tr>
<tr>
<td>Email : </td>
<td><?php echo $email; ?></td>
</tr>
<tr>
<td>Address : </td>
<td><?php echo $add; ?></td>
</tr>
<tr>
<td>Subject Selected : </td>
<td><?php echo $subm." ".$subs." ".$sube; ?></td>
</tr>
<tr>
<td>Gender : </td>
<td><?php echo $gen ?></td>
</tr>
</table>
</body>
</html>
任何帮助将不胜感激。
答案 0 :(得分:1)
您忘了关闭checkbox.
如果您在没有选中复选框的情况下发布表单,那么它会在您现在收到错误时给出错误。
您可以使用@
忽略此错误,但这不是最佳做法。
同时强>
if(isset($_POST["chkm"]))
{
$subm=$_POST["chkm"];
}
您可以使用上述条件检查if
值是否设置。
答案 1 :(得分:0)
未选中的复选框不会在帖子中发送它的值。所以$_POST["chke"]
实际上并不存在。您应该在从帖子中获取值之前检查是否存在。
if(isset($_POST["chke"]))
$sube = $_POST["chke"];
答案 2 :(得分:0)
您的输入复选框标记不完整。因此PHP无法读取您的帖子值。
此外,如果未“检查”,则不会发送POST值。
答案 3 :(得分:0)
以下内容将解决您的undefined index
错误:
<?php
$uname = array_key_exists("txtname", $_POST) ? $_POST["txtname"] : NULL;
$pass = array_key_exists("txtpass", $_POST) ? $_POST["txtpass"] : NULL;
$email = array_key_exists("txtemail", $_POST) ? $_POST["txtemail"] : NULL;
$add = array_key_exists("add", $_POST) ? $_POST["add"] : NULL;
$subm = array_key_exists("subm", $_POST) ? $_POST["subm"] : NULL;
$subs = array_key_exists("subs", $_POST) ? $_POST["subs"] : NULL;
$sube = array_key_exists("sube", $_POST) ? $_POST["sube"] : NULL;
$gen = array_key_exists("gen", $_POST) ? $_POST["get"] : NULL;
?>
然而,创建一个能够为你处理这个问题的函数通常更好:
<?php
function get_expected_post( $expected = array() ){
$ret = (object) NULL;
foreach ( $expected as $key ) {
$ret->{$key} = array_key_exists($key, $_POST) ? $_POST[$key] : NULL;
}
return $ret;
}
$post = get_expected_post(array(
'txtname',
'txtpass',
'txtemail',
'add',
'subm',
'subs',
'sube',
'get'
))
?>
通过这种方式,您可以更轻松地扩展表单中的项目,并且无论何时访问以下内容,您都可以确信它存在 - 因此不会出错:
<?php echo $post->subm; ?>
如果您希望在帖子中将帖子名称转换为不同的名称,则可以扩展上述内容。此外,您还可以添加额外的安全性,例如解析预期值的值等等。
答案 4 :(得分:0)
在你的html中,你想要为每个复选框设置相同的名称
<td><input type="checkbox" name="chk[]" value="Maths"</td>Maths
<td><input type="checkbox" name="chk[]" value="Science"</td>Science
<td><input type="checkbox" name="chk[]" value="English"</td>English
然后,在你的php文件中你可以这样做
$checkbox = $_POST['chk'];
$复选框现在将是已选中的每个复选框的数组。