Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
When submitting the form, the same page is loaded in its place, what could be the matter?The point may be in what action is specified for this form.
<form class="ajax_form" method="post" action="kontaktyi.html">
</form>
<form class="ajax_form" method="post" action="mail.php">
</form>
$mail = "Ваша почта"
$name = htmlspecialchars($_POST['feedback-name']); // получаем имя пользователя
$mailUser = htmlspecialchars($_POST['feedback-email']); // получаем email пользователя
$massage = htmlspecialchars($_POST['feedback-message']); // получаем сообщение пользователя
mail($mail, "Письмо из формы 'Контакты'", "Пользователь с именем".$name."и почтовым ящиком".$mailUser."Прислал вам сообщение: ". $massage. "Не забудьте ему ответить!"); // отправляем письмо на ящик
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question