И как получить доступ к переменной $datastring
jQuery.ajax({
type: "POST",
data: $datastring,
url: "./js/reservations.php",
success: function(response){
jQuery("#reservationForm p.sending, #reservationForm p.notice").hide();
if(response) {
alert('сообещние отправлено')
} else {
alert('нет')
}
}
});
в файл php
mail('ящик','тема',$datastring)
<--- так не работает