Submit buttons, and how to get tehm to work!

liunx

Guest
I have created a simple form for my simple website. I would realy like to have a submit button, but I have no idea how to code it. Does anyone know, and where, potetially, can the information be stored? i.e. to my e-mail address??<br />
<br />
Any information is much appreciated!!<br />
<br />
Thanks <br />
Bengaul!!<!--content-->You'll need to find out what kind of permissions your web server will allow you first. Give em a ring or check there web page before proceeding. This will save you hassle in the long run.<!--content-->Hello entimp! You seem to have been active for the past 3/4 hour!!<br />
<br />
Here is the simple form tag:<br />
<br />
<FORM ACTION="[email protected]" METHOD=POST><br />
<br />
and then put this at the end of your form:<br />
<br />
<INPUT TYPE="submit" VALUE="Submit"><br />
<br />
I think thats right. Anyone like to back me up. Thats one of those things I can't seem to remember, forms.<!--content-->To make sure the data arrives in a readable format make following change:<br />
<br />
<br />
<form action="mailto:[email protected]" enctype="text/plain"> <br />
<br />
..here goes all your form fields<br />
<br />
..<br />
<input type="submit" value="send email to me now"><br />
</form><!--content-->
 
Back
Top