in reply to Cgi and Perl : how to use data once people selects the checkbox field?

This is a very basic example, so you will have to fix for your specific needs, you can try irt.org if you need to ask more indepth javascripting questions.
<select onchange='foo();'> <option value=1>trival example</option> </select> <script type='text/javascript'> function foo () { form.submit)(; return true; }
amt.

perlcheat
  • Comment on Re: Cgi and Perl : how to use data once people selects the checkbox field?
  • Download Code

Replies are listed 'Best First'.
Re^2: Cgi and Perl : how to use data once people selects the checkbox field?
by Joost (Canon) on Dec 17, 2004 at 20:50 UTC
      how can do I do it such that I have multiple forms?