Jump to content
  • 0

создать форму "обратная связь"


Arkada
 Share

Question

нужно создать простую форму "обратная связь" и чтобы при наджатии на кнопку "отправить" форма сразу отправлялась по адресу, а не вылезала табличка с надписью "Данная форма будет отправлена.... Хотите продолжить?".

по смыслу примерный код уже написала, правда пока нет полей "ваш e-mail" и "текст сообщения":

<form action="mailto: user@mail.box"  target='mail' enctype=text/plain>-->
<p>Имя: <input type=text size=40 name=fn>

Фамилия:<input type=text size=40 name=ln>

Пол:<input type=radio name=gender value="male">мужской<input type=radio name=gender value="female">женский

Возраст:<input type=text size=5 name=age>лет

<input type=submit value="отправить"</p>

помогите, пожалуйста!

заранее благодарю)

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Давайте по порядку ничего не понятно что вы тут написали.

1) что то у вас код странный комментарии (-->) параметры странные (target='mail') , теги не оканчиваются.

2) Напишите поля ваш емаил и текст сообщения:

<form  action="здесь самое интересное" id="guestform" method="post">
<p>
<label for="name">Name:</label>
<input type="text" class="pole" id="name" name="name" value=""/>
</p>
<p>
<label for="email">Email:</label>
<input type="text" class="pole" id="email" name="email" value=""/>
</p>
<p>
<label for="site">Site:</label>
<input type="text" class="pole" id="site" name="site" value=""/>
</p>
<p>
<label for="text">Message:</label>
<textarea name="text" id="text" class="pole" rows="5" cols="20"></textarea>
</p>
<!-- Это вам не нужно но все таки я оставлю
<p>
<img src="/en/kcaptcha/?PHPSESSID=120ad5b1b698922a469ae8f9b74d639a" id="kcaptcha" width="228" style="border: 1px solid #B2B2B2"/>
<p style="margin: -7px 0 10px 0"><a href="#" onclick="document.getElementById('kcaptcha').src = '/en/kcaptcha/?' + Math.floor(Math.random()*10); return false;">Refresh Image</a>
</p>
<p>
<label for="keystring">Security code:<span class="greytextGuest">Please, type here numbers that you see at the image above</span></label>
<input type="text" class="pole" id="keystring" name="keystring" />
</p>
-->
<p><input class="buttonGuest" type="submit" value="Отправить" /></p>
</form>

далее определитесь что вы хотите:

Оправить на мыло? или оставить на сайте? Или записать в фаил ?

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 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