我用 JQuery 和 PHP 编写了一个验证器,它可以在除 Internet Explorer 9 之外的所有浏览器中使用。我收到错误消息“SCRIPT5:访问被拒绝”。
jQuery代码
$('#contact-send').click(function(){
$.post('functions/db-contact.php',{
contact_name: $('#contact-name').val(),
contact_email: $('#contact-email').val(),
contact_subject: $('#contact-subject').val(),
contact_message: $('#contact-message').val()
},
function(x){
console.log(x);
}
});
这是响应(x):
<?xml version="1.0"?>
<response>
<mail>
<name>1</name>
<email>1</email>
<subject>1</subject>
<message>1</message>
<status>notok</status>
</mail>
</response>
SCRIPT5: Access denied
编辑:我真的不知道可能是什么错误。我添加了数据库联系文件。@布拉德:)
<?php
include 'db_login.php';
$name = mysql_escape_string($_POST['contact_name']);
$email = mysql_escape_string($_POST['contact_email']);
$subject = mysql_escape_string($_POST['contact_subject']);
$message = mysql_escape_string($_POST['contact_message']);
echo "<?xml version=\"1.0\"?>\n";
echo "<response>\n";
echo "\t<mail>\n";
$i = 0;
if($name == 'type your name' or $name == '' or strlen(trim($name)) == 0){
echo "\t\t<name>1</name>\n";
$i = 1;
}
if($email == 'type your email address' or $email == '' or strlen(trim($email)) == 0){
echo "\t\t<email>1</email>\n";
$i = 1;
}
if($subject == 'type subject' or $subject == '' or strlen(trim($subject)) == 0){
echo "\t\t<subject>1</subject>\n";
$i = 1;
}
if($message == 'type your message on us'
or $message == '' or strlen(trim($message)) == 0){
echo "\t\t<message>1</message>\n";
$i = 1;
}
if($i == 1){
echo "\t\t<status>notok</status>\n";
echo "\t</mail>\n";
echo "</response>";
return false;
}
$sql = "INSERT INTO `d013f578`.`mail` (`id`, `name`, `email`, `subject`, `message`)
VALUES (NULL, '".$name."', '".$email."', '".$subject."', '".$message."');";
$query = mysql_query($sql) or die;
echo "\t\t<status>ok</status>\n";
echo "\t</mail>\n";
echo "</response>";
?>
不幸的是,我在互联网上没有找到任何有用的提示。