Jump to content
  • 0

Отправка данных на почту из формы


brendmaster
 Share

Question

Доброго времени суток!

Есть форма:

<form id="call_form" action="mail.php" method="post" class="request">
<p>Закажите звонок специалиста</p>
<input id="name_input" type="text" name="name" value="Ваше имя" />
<input id="tel_input" type="text" name="phone" value="Телефон" />
<input name="commit" type="submit" value="Заказать" />
</form>

И есть скрипт mail.php:

<?php
$name=$_POST["name"];
$phone=$_POST["phone"];
$to = "newnebo52@mail.ru"; /*МЕНЯЕШЬ НА СВОЙ АДРЕСС!*/
$subject = "Заказ звонка с сайта НОВОЕ НЕБО";
$message = "Имя: $name\nТелефон: $phone\n$REMOTE_ADDR";
mail ($to,$subject,$message) or print "Не могу отправить письмо.";
echo header("Location: ".$_SERVER['HTTP_REFERER']);
exit;
?>

И почему-то при нажатии на кнопу заказать, ничего не происходит когда заполняешь поля...А когда в полях стоит значение value, отправка производиться именно значений value. Помогите пожалуйста в решении данной проблемы.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy