Click to See Complete Forum and Search --> : Need some help, please.


Nitewarrior
12-16-2003, 01:11 PM
I am a real newbie at this. I have created a web page for the organiation I work for as a requirement to have this job. I had never done any HTML. So I started. Well it is at www.southheartlandhealth.org (http://www.southheartlandhealth.org)

Any way on the Contact us page and the mini grant page there are submit pages. I can not figure out what script to use to make the buttons functional.

Could someone out htere help me, Please?

soccer362001
12-16-2003, 01:36 PM
<form action="mailto:you@yours.com">
try that

or use a php script.

pixelmech
12-16-2003, 02:36 PM
Nite, you can submit the form as an email as soccer suggested, however it will go over the internet completely unprotected. If you don't care, it's not an issue, but it's not good practice.

A better way to do it would be to handle the form submission with some kind of server-side language such as PHP, ASP or JSP. Since you are a newbie, I'm going to guess that is beyond you, however there are plenty of canned scripts out there you could find. I would suggest PHP as it is open source.

FYI - Your links changing size on mouseover is incredibly distracting and makes your navigation and form selection items very hard to use.

Anyway, find yourself a good tutorial on forms and run through it.

Tom