View Full Version : I am looking for a HTML contact form script
alfonso
09-22-2009, 08:09 PM
Do you know any small HTML contact form script? I want to add one to my blog, but I need a simple one, nothing fancy. I don't know any programming.
forum_amnesiac
09-23-2009, 06:45 AM
Normally for a contact form you would want to email the response, unless you're putting the information into a database.
Either way it requires server side scripting.
can you be bit more specific about just what you want, what info do you want to collect.
prasanthmj
09-23-2009, 03:06 PM
The following pages might help:
Contact Forms (http://www.html-form-guide.com/contact-form/)
PHP email contact form (http://www.html-form-guide.com/contact-form/php-email-contact-form.html)
qikfire
11-24-2009, 07:24 PM
Normally for a contact form you would want to email the response, unless you're putting the information into a database.
Either way it requires server side scripting.
can you be bit more specific about just what you want, what info do you want to collect.
HERE IS AN EXAMPLE
<form method="post" action="/cgi-bin/ContactMe.cgi">
(you will need to ask your website host for 'post' script)
<input type="hidden" name="subject" value="Website Enquiry Form" />
<input type="hidden" name="recipient" value="contactme" />
<input type="hidden" name="redirect" value="http://www.YOURWEBSITE/thank-you.html">
IVE USED A TABLE TO LINE UP FIELDS
<Table width=100% align=center border=0>
<tr>
<td VALIGN=TOP>
<H6>
NAME :</TD>
<TD><input type=text size=30 maxlength=40 name=Name>
</TD> </TR>
<TR> <TD VALIGN=TOP>
<H6>
TELEPHONE :</TD>
<TD> <input type=text size=30 maxlength=40 name=Telephone> </TD>
</TR>
<TR>
<TD VALIGN=TOP>
<H6>
EMAIL : </TD>
<TD> <input type=text size=30 maxlength=40 name=Email> </TD>
</TR>
<TR>
<TD VALIGN=TOP>
<H6>
DO YOU HAVE A WEBSITE? Yes/No : </TD>
<TD VALIGN=TOP> <H6><input type=text size=3 maxlength=3 name=Website> URL: <input type=text size=26 VALUE="http://www." maxlength=30 name=url> </TD>
</TR>
<TR>
<TD VALIGN=TOP>
<H6>
YOUR ENQUIRY/QUESTION : </TD>
<TD>
<textarea cols=36 rows=6 name="Enquiry"></textarea>
</TD></TR>
<TR>
<TD COLSPAN=2 ALIGN=CENTER>
<INPUT TYPE=SUBMIT VALUE="SEND ENQUIRY">
</TABLE>
Hope this helps
QIKFIRE
regan
11-25-2009, 08:00 AM
If you don't know programming, I sugest you try a contact form generator service like 123 Contact Form (http://www.123contactform.com). I am using it for some of my websites. Another option would be Freedback (http://www.freedback.com).
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.