-1

我是 PHP 新手,正在做一个项目。

我想使用 PHP 验证登录和注册页面。

我想在同一字段中验证表单并在输入框的右侧显示错误。

我尝试了很多次,但我没有成功。我可以用 JavaScript/jQuery 做到这一点,但我无法用 PHP 做到这一点。

我的表格包含:

email : inputbox - error div
password : input box -error div
submit button

你能解释一下如何用 PHP 做到这一点吗?

4

2 回答 2

1

您可以让表单自己发布并验证提交时的发布数据。就像是:

<?php

$errors = array();

if (isset($_POST['submit'])) {
    // do some validation and fill $errors variable when something is wrong

    // if everything is fine e.g. redirect user
    header('Location: http://example.com/success');
}
?>

<form action="" method="post">
  <input type="text" name="email">
  <?php if ($errors['email']) { echo '<div class="error">' . $errors['email'] . '</div>'; } ?>
  <input type="password" name="password">
  <?php if ($errors['password']) { echo '<div class="error">' . $errors['password'] . '</div>'; } ?>
  <input type="submit" name="Submit">
</form>
于 2012-08-12T15:42:23.333 回答
0

你不能用 php 来做...... php 在服务器上运行,用 php 来做这件事的唯一可能方法是使用 jquery 或 js(和 ajax)......

于 2012-08-12T15:37:07.373 回答