在 Register.php 中,它包含一个表单。
<html>
<body>
<form action="Insert.php" method="post">
Email: <input type="text" name="email" /><br/>
Username: <input type="text" name="username" /><br/>
<input type="submit" name="Send Registration" value="Send Registration"/>
</form>
</body>
</html>
在 Insert.php 中,它包含进行一些验证的代码。
<?php
if(!filter_var($_POST[email], FILTER_VALIDATE_EMAIL))
{
exit("E-mail is not valid");
}
else
{
if(!strlen($_POST[username])>=6)
{
exit("Username should be at least 6 characters");
}
else
{
// Continue other validations
}
}
?>
当我输入无效的电子邮件地址时,单击“发送注册”,它将显示错误消息“电子邮件无效”。因此,我尝试输入有效的电子邮件地址并在用户名字段中输入 5 个或更少的字符,然后单击“发送注册”。但它不显示错误消息。
我可以知道我的代码有什么问题吗?
对不起,我是编程和 php 的初学者。
提前致谢!