Free contact-us form. any suggestions?

heretolearn

Junior Member
Joined
Jul 1, 2008
Messages
101
Reaction score
8
Can someone suggest a free "contact-us form" that I can use on my websites? Something that doesn't call back home preferably.
 
I don't see what you need a form for this. Just work through the HTML
 
Here's a basic contact us form using formmail which is probably on your server. It's very ugly and basic but can be modified and should get you started on the right path anyway.

Code:
<form action="php/formmail.php" method="post">

<input type="hidden" name="recipient" value="[email protected]" />

<input type="hidden" name="required" value="realname,email,Phone" />
<input type="hidden" name="subject" value="Contact Form" /> 
<input type="hidden" name="redirect" value="../thanks.html" />

                                    <div align="center"> 								<center>

<table width="66%" cellspacing="0" cellpadding="0" border="0">

                                        <tbody>

                                            <tr>

                                                <td width="104"> 										<font face="Arial" style="font-size: 8pt;"> 										Name:</font></td>

                                                <td width="156"> 										<input type="text" name="realname" size="20" /></td>

                                            </tr>

                                            <tr>

                                                <td width="104"> 										<font face="Arial" style="font-size: 8pt;"> 										Phone:</font></td>

                                                <td width="156"> 										<input type="text" name="Phone" size="20" /></td>

                                            </tr>

                                            <tr>

                                                <td width="104"> 										<font face="Arial" style="font-size: 8pt;"> 										Email:</font></td>

                                                <td width="156"> 										<input type="text" name="email" size="20" /></td>

                                            </tr>

                                            <tr>

                                                <td width="104"> 										<font face="Arial" style="font-size: 8pt;"> 										Comments:</font></td>

                                                <td width="156"> 										<textarea rows="4" name="comments" cols="17"></textarea></td>

                                            </tr>

                                        </tbody>

                                    </table>

                                    </center></div>

                                    <p align="center"> 					

<input type="submit" value="Submit" /><input type="reset" value="Reset" /></p>

                                </form>

You'll need formmail.php to be in your php directory on your site, google it if you need it but i've rarely seen servers that don't have it setup.
 
give me the format, the email to receive the infos and the autoresponder message and Ill make one for you
 
Back
Top