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.
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.
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.
The following pages might help:
Contact Forms
PHP email contact form
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
If you don't know programming, I sugest you try a contact form generator service like 123 Contact Form. I am using it for some of my websites. Another option would be Freedback.
Bookmarks