S Sean Z Guest Jan 6, 2009 #2 I'm making a website and want an E-mail form in it. However the place I'm hosting it at for free dosen't support PHP on a free account. I don't really want to upgrade my plan just yet. Any Ideas?
I'm making a website and want an E-mail form in it. However the place I'm hosting it at for free dosen't support PHP on a free account. I don't really want to upgrade my plan just yet. Any Ideas?
L laxman9977 Guest Jan 6, 2009 #3 Use JSP Or give this a try. The main thing is the info in the form tag <form action="mailto:[email protected]" method="POST" enctype="multipart/form-data" name="EmailTestForm"> Your Name:<br> <input type="text" size="20" name="VisitorName"><br><br> Your Comment:<br> <textarea name="VisitorComment" rows="4" cols="20"> </textarea><br><br> <input type="submit" value="Email This Form"> </form>
Use JSP Or give this a try. The main thing is the info in the form tag <form action="mailto:[email protected]" method="POST" enctype="multipart/form-data" name="EmailTestForm"> Your Name:<br> <input type="text" size="20" name="VisitorName"><br><br> Your Comment:<br> <textarea name="VisitorComment" rows="4" cols="20"> </textarea><br><br> <input type="submit" value="Email This Form"> </form>