Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

Creating form on website

Hi all, I'm making a website and actually have no idea what I'm doing. I'm using a website creator program, and I'm about finished with it. But what I'd like to add is a form for people to fill out and send to me (name, address, email) and so on. I don't know html at all. How do I get a form like this on my page and set up to email their info to me. Any help would be greatly appreciated. Thanks
[427 byte] By [Fantom3993] at [2007-11-11 8:01:46]
# 1 Re: Creating form on website
RE: "I don't know html at all"

I think that sums up your problem pretty well. You're trying to run before you can crawl, and it isn't going to work, in my opinion. Learn HTML, then use this code:

<FORM action="mailto:You@YourISP.com">
<p>
Enter your name: <input type="text" size="50" name="guest_name">
<br><input type="submit" value="submit">
</p>
</FORM>
bschaettle at 2007-11-11 23:34:57 >