Jump to content
  • 0

Проблема с формой


klikklik
 Share

Question

Здравствуйте!

Нужна помощь с формой) Вроде все делаю правильно и в форме, и в обработчике прописываю то что надо, но письмо приходит пустое (чтобы я не писал - латиницу, кириллицу, цифры)...(((

код формы:

<form name="form1" method="post" action="obrabotchik.php">
<input name="input" type="text" size="25" maxlength="25" >
<input name="Submit" type="submit" value="Тыкать сюда"></form>

код обработчика:

<?php
if (isset($_POST['Input'])) {$input = $_POST['Input'];}
$address = 'kkk@kkk.ru';
$sub = "Заказ звонка";
$mes = "$input";
$verify = mail ($address,$sub,$mes,"Content-type:text/plain; charset = utf-8");
if ($verify == true)
{echo "<p>Сообщение отправлено";}
else
{echo "<p>Сообщение не отправлено";}
?>

p.s. и еще надпись "сообщение отправлено" выводиться на новой(пустой странице), а можно ли как-нибудь сделать, чтобы оно выводилось на той же странице что и сама форма, только в другом блоке?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
Input и input - разные переменные

да-да) с этой проблемой уже разобралси) спасиБо)

а вот как сделать, чтобы надпись "сообщение отправлено" выводилось на этой же странице что и форма, а не на новой пустой странице?

Link to comment
Share on other sites

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