我的php和javascript知识有限。我正在上课:)
我有一个表单,检查字段是否为空;如果他们是警报出现。然后第二个php文件检查提交的表单,看看电子邮件和电话号码是否适合参数;如果他们不这样做,则表单未提交,并且新页面上会显示错误。 有没有办法将两者结合起来?
以下是contact.php上的代码:
<script>
function validateForm()
{
var x=document.forms["contactform"]["companyname"].value;
var y=document.forms["contactform"]["name"].value;
var z=document.forms["contactform"]["telephone"].value;
var e=document.forms["contactform"]["email"].value;
if (x==null || x=="")
{
alert("company name must be filled out");
return false;
}
if (y==null || y=="")
{
alert("name must be filled out");
return false;
}
if (z==null || z=="")
{
alert("telephone must be filled out");
return false;
}
if (e==null || e=="")
{
alert("email must be filled out");
return false;
}
//send
alert("Form sent.");
document.contactform.submit();
}
</script>
在第二个send_form_email.php中:
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}
// validation expected data exists
if(
!isset($_POST['telephone']) ||
!isset($_POST['email']))
{
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$companyname = $_POST['companyname']; // required
$name = $_POST['name']; // required
$telephone = $_POST['telephone']; // required
$email_from = $_POST['email']; // required
$comments = $_POST['comments']; // not required
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email_from)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[0-9.'-]+$/";
if(!preg_match($string_exp,$telephone)) {
$error_message .= 'The Phone Number you entered does not appear to be valid.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Form details below.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
答案 0 :(得分:0)
我将进行jQuery验证:
http://jquery.bassistance.de/validate/demo/
在数据库中输入信息或通过电子邮件发送之前,和trim和mysql转义字符。 (PHP:http://php.net/manual/en/function.mysql-real-escape-string.php)
基本上,您可以使用jQuery Validation插件执行所有验证客户端。
答案 1 :(得分:0)
我通常使用像jqueryForms(http://malsup.com/jquery/form/这样的东西)通过ajax提交页面并在PHP中进行所有验证,这样做的好处是,如果我需要检查一个正在使用的emial地址或者是否需要运行一些高级服务器端/数据库驱动检查我可以的数据,然后我让它返回一个json对象,然后脚本将用于抛出错误并突出显示字段等。额外的好处是,因为我已经使用jqueryForms完成了所有这些工作,所以我可以通过ajax进行整个表单并为用户提供流畅的体验。
我可能正在寻找一个更复杂的解决方案(根据您的经验,您可能需要在实施时稍微阅读一下)但它只给您一个地方担心验证并且不会强制用户等待重新加载只是为了了解提交的信息不会起作用(以及奖励积分,如果提交包含密码或验证码的信息,则无需重新输入)。