Forum Home
Press F1
 
Thread ID: 71195 2006-07-29 04:40:00 How do I create an easy to use web form? matty3 (5363) Press F1
Post ID Timestamp Content User
474534 2006-07-29 04:40:00 Hello,

I would like to create an easy to code web form. Could anyone help me? I just need it for like feedback etc. Would it be possible for it to send the data to an e-mail address?

Thankyou for your help,

~Matt :-)
matty3 (5363)
474535 2006-07-29 05:08:00 Yeah it's real easy, so long as you have a website host that supports the scripts that you need. Do you have a cgi-bin folder already set up?

You're welcome to copy my forms if you do.
Greg (193)
474536 2006-07-29 06:34:00 Hello Matt :)

Here is the code to do what you want:


<form name="form1" method="post" action="mailto: you’re-mail-address-here.co.nz">
<p> Name:
<input name="name" type="text" id="name">
</p>
<p> e-mail address:
<input name="e-mail" type="text" id="e-mail">
</p>
<p> Comments: </p>
<p>
<textarea name="comments" id="comments"></textarea>
</p>
<p>
<input type="submit" name="Submit" value="Submit">
<input name="Reset" type="reset" id="Reset" value="Reset">
</p>
</form>

Make sure you fill in where it has "Youre-mail-adress-here” with your e-mail address ;)

I Hope this helps & if you have any questions let me know :)
stu161204 (123)
474537 2006-07-29 06:52:00 you’re-mail-address-here.co.nz

Make sure you fill in where it has "Youre-mail-adress-here” with your e-mail address ;)

I Hope this helps & if you have any questions let me know But please be aware of punctuation/grammar/spelling.
Greg (193)
1