Jump to content
  • 0

Как форму вставить форму обратной связи на страницу сайта ?


Alexey197825
 Share

Question

Как вставить форму обратной связи на страницу сайта ?

И нужно ли вставлять этот код ?

<?php

if (isset($_POST['name'])) {$name = $_POST['name'];}

if (isset($_POST['email'])) {$email = $_POST['email'];}

if (isset($_POST['message'])) {$message = $_POST['message'];}

$address = 'neo_1978@mail.ru';

$sub = "Сообщение для администрации сайта";

$mes = "Автор назвался: $name \nУказал свой адрес: $email \nСодержание письма: $message";

$verify = mail ($address,$sub,$mes,"Content-type:text/plain; charset = windows-1251\r\nFrom:$email");

if ($verify == 'true')

{

echo "<p>Сообщение отправлено";

}

else

{

echo "<p>Сообщение не отправлено";

}

?>

Edited by Alexey197825
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

есть замечательный пример на народе, выглядит так пример

а код такой:

<form ENCTYPE="multipart/form-data" action="http://narod.yandex.ru/send-poll.xhtml" method=POST>

<table width=483 cellspacing=10 cellpadding=0 border=0>

<tr>

<td><img src="http://narod.yandex.ru/images/anketa2/empty.gif" width=60 height=1 alt=""></td>

<td><img src="http://narod.yandex.ru/images/anketa2/empty.gif" width=34 height=1 alt=""></td>

<td><img src="http://narod.yandex.ru/images/anketa2/empty.gif" width=120 height=1 alt=""></td>

<td><img src="http://narod.yandex.ru/images/anketa2/empty.gif" width=220 height=1 alt=""></td>

</tr>

<tr>

<td height=28><img src="http://narod.yandex.ru/images/anketa2/empty.gif" width=60 height=1 alt=""></td>

<td colspan=3><font size=-1><b>    <h3>Напишите нам и мы ответим.</h3><b></font></td>

</tr>

<tr valign=top>

<td><br></td>

<td><img src="http://narod.yandex.ru/images/anketa3/dot.gif" width=34 height=9 alt="" vspace=4></td>

<td>Ваш e-mail<br></td>

<td><input type=text name="a[Ваш e-mail]"></td>

</tr>

<tr valign=top>

<td><br></td>

<td><img src="http://narod.yandex.ru/images/anketa3/dot.gif" width=34 height=9 alt="" vspace=4></td>

<td>Ваше сообщение<br><br></td>

<td><textarea rows=10 cols=40 name="a[Ваше сообщение]"></textarea></td>

</tr>

<tr>

<td colspan=3><br></td>

<td><input type=reset value="Очистить"> <input type=submit value="Отправить"></td>

</tr>

</table>

<input type=hidden name="email" value="куда слать">

<input type=hidden name="title" value="по какой теме">

<input type=hidden name="login" value="как вы узнаете откуда">

<input type=hidden name="backlink" value="куда попасть после отправки">

<input type=hidden name="backtext" value="На главную страницу">

<input type=hidden name="separator" value="разделитель">

<input type=hidden name="mess" value="">

<input type=hidden name="yourans" value="">

<input type=hidden name="vari" value="3">

<input type=hidden name="forceforward" value="Да">

</form>

вот как-то так)

Link to comment
Share on other sites

  • 0

Аа, не заметил

if ($verify == 'true')

Феерично просто. Попробуй == заменить на ===, то-то удивишься.

А зачем так много кода в примере? Очень не наглядный пример получился.

Edited by Int
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