PHP表单验证 - foreach

时间:2015-10-07 08:44:22

标签: php validation foreach

所有提交的字段都在$ _POST数组中可用。所以我们可以迭代这个数组来检查必需字段的值是否存在。代码如下:

<?php
$post = $_POST;
if(count($post) > 0) {

    foreach($post as $key => $value) {

        if(empty($post[$key])) {
        $message =  $key . " is required!";
        break;
        }
    }

}
?>

我想采取此行动:

例如,当用户名字段为空时,将打印消息input1是必需的! input1与用户名字段的名称相同。

我想要回显用户名是必需的,但不更改用户名字段的名称。

例如,代码如下,但不起作用,我不知道在哪里以及如何!

if($key == 'input1'){
    $key = 'username';
}
else
if($key == 'input2'){
    $key = 'password';
}

以下代码中的表单和输入元素:

<html>
<head>
<style>
.tableheader {
    background-color: #CCC;
    color:white;
    font-weight:bold;

}
.tablerow {
    background-color: #f9f9f9;
    color: #333;
}
.message {
    color: #FF0000;
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding: 10;
}

</style>
</head>
<body dir="rtl">
<div align="center" class="message"><?php if(isset($message)) echo $message; ?></div>
<form name="registrationform" method="post" action="" style="direction: ltr">

<table border="0" cellpadding="10" cellspacing="1" width="500" align="center">
<tr class="tableheader">
<td align="center" colspan="2">Registration Form</td>
</tr>
<tr class="tablerow">
<td align="right">Username</td>
<td><input type="text" name="input1" value="<?php if(isset($_POST['input1'])) echo $_POST['input1']; ?>"></td>
</tr>
<tr class="tablerow">
<td align="right">Password</td>
<td><input type="password" name="input2" value="<?php if(isset($_POST['input2'])) echo $_POST['input2']; ?>"></td>
</tr>


<tr class="tableheader">
<td align="center" colspan="2"><input type="submit" name="submit" value="Submit"></td>
</tr>
</table>
</form>
</body></html>

3 个答案:

答案 0 :(得分:5)

如果理解正确...你需要另一个阵列,你可以保留一个&#34; map&#34;您的输入字段&#39;名字和他们的实际&#34;人类&#34;名。类似的东西:

$fields_map = array(
  'input1' => 'Username',
  'input2' => 'Password',
  'whatever' => 'something'
)

..然后,当您想要将消息输出给用户时,您可以执行以下操作:

if(empty($post[$key])) {
   $message =  $fields_map[$key] . " is required!";
} 

答案 1 :(得分:1)

试一试:

<?php
$post = $_POST;
$message='';
if(count($post) > 0) {

    foreach($post as $key => $value) {

        if(empty($post[$key])) {
        $message .=  $key . " is required!";
        break;
        }
    }

}
?>

答案 2 :(得分:1)

您必须使用switch语句或找到一种方法来映射您要显示的实际名称,例如用户名到表单名称,例如input1。

此类映射的示例如下所示:

$map = array('input1'=>'username', 'input2'=>'surname', 'input3'=>'othernames');
$post = $_POST;
if(count($post) > 0) {

   foreach($post as $key => $value) {

      if(empty($post[$key])) {
         $message =  $map[$key] . " is required!";
         break;
      }
   }
}