Не отправляется или не получает
Есть обработчик формы
JS:
var submitRequestForm = function() {
$('#bronModal').modal('hide');
$('#thxModal').modal('show');
var json = JSON.stringify({
name: $("#req_name").val(),
drug: $("#req_drug").val(),
phone: $("#req_phone").val(),
comment: $("#req_comment").val(),
site: 'Poisk apteki'
});
var url = "http://search-apteki.ru/sendmail/index.php";
$.post(url,
json,
function(resp) {
console.log(resp);
}
);
$.post("http://search-apteki.ru/sendmail/index.php",
JSON.stringify({
name: $("#req_name").val(),
phone: $("#req_phone").val(),
comment: $("#req_drug").val() + ", " + $("#req_comment").val(),
}),
function(resp) {
}
);
}
И есть обработчик отправленных данных
PHP:
<?php
if(isset($_POST['name']))
{
$name = $_POST['name'];
$name = htmlspecialchars($name);
$name = urldecode($name);
$name = trim($name);
$drug = $_POST['drug'];
$drug = htmlspecialchars($drug);
$drug = urldecode($drug);
$drug = trim($drug);
$phone = $_POST['phone'];
$phone = htmlspecialchars($phone);
$phone = urldecode($phone);
$phone = trim($phone);
$comment = $_POST['comment'];
$comment = htmlspecialchars($comment);
$comment = urldecode($comment);
if (mail("123123123@ya.ru", "Заявка с сайта", "Имя:".$name." E-mail: ".$drug." Телефон:".$phone." Сообщение:".$comment."",$drug))
{ echo "сообщение успешно отправлено";
//header('Refresh:3; URL=https://123123123/contacts.php');
} else {
echo "при отправке сообщения возникли ошибки";
}
} else header("Location: /");?>
В итоге данная система в паре не работает, а обработчик на php пашет, в чём косяк?
|