Questions about Cgi script?

  • Thread starter Thread starter Kyle P
  • Start date Start date
K

Kyle P

Guest
1. How do I make one?

Ive made this form:

<form name="myform" action="handle.cgi" method="POST">
<div align="center">
<br><br>
<input type="text" size="25" value="Enter your email here!">
<br><input type="submit" value="Send me your email"><br>
</div>
</form>

I want the handle.cgi script to add the email to a table,

Also i want the script to be passworded, so only i can access it.

Thanks
 
http://www.cs.tut.fi/~jkorpela/forms/ has some good information.

The first thing you need to do is to check what languages your server supports for CGI, and then choose one to write your program in. Then look up a CGI tutorial for it (assuming you know the language already)
 
Back
Top