Yo... Any one know how to do a contact form with No PHP???
Yo... Any one know how to do a contact form with No PHP???
The only way I could think of making one without using a scripting language would be using the "mailto:" html tag. That method isn't every good, and proboly will not work like you want it to. The best way would to use php...
How come you ca use php? If it is because you dont know it. Then look here: http://phpformgen.sourceforge.net/ it creates all the php etc for you.
*Moved to Programming Help*
-Daniel S, X10 Senior Account Manager.
Useful Links:
Terms of Service | Getting Started | x10 Commandments | Forum Rules
IRC Support | PHP Info | Ad Code | Buy a Domain |
x10Exchange | FileVIP
(TinyURL used to shorten URLs)
you can, i remember one a while back solely on html, but i'm too lazy atm to look for it.
http://lmgtfy.com/?q=html+email+form
OK, so I was lying (about being too lazy :P)
CREDIT: http://www.htmlbasix.com/forms.shtmlHTML Code:<form action="mailto:youremail@yourdomain.com?subject=form submission" method="post" enctype="text/plain"> <table><tr><td> </td></tr> <tr><td align=center> <INPUT TYPE="submit" value="submit" style="color: #ffffff; background-color: #000000"> </td></tr></table> </FORM>
Last edited by xPlozion; 03-02-2009 at 08:20 PM.