in reply to Re: Form to let web user input their own data to another page
in thread Form to let web user input their own data to another page

The best source of CGI info is on the perl.com website- follow the "How do I write CGI scripts?" link. As usual the best way to learn is to practice a few scripts.

Also, if you are entering a lot of data you might want to include some simple javascript to check the information before sending to the server. I have found this to be a useful tool. There is tonnes of info for this on the web and will make the CGI stuff simpler, since you know exactly what ranges of values you will be receiving.

It seems much more difficult than it actually is! Good Luck.

  • Comment on Re: Re: Form to let web user input their own data to another page

Replies are listed 'Best First'.
Re: Re: Re: Form to let web user input their own data to another page
by Xxaxx (Monk) on Apr 22, 2001 at 23:41 UTC
    JavaScript validation can help tremendously. Just don't rely on it.
    The reason being that folks can turn off JavaScript in their browsers. This will allow the form to be posted without the JavaScript validation.

    Hence you'll still need to do some field validation as the cgi script accepts the data.
    Claude