in reply to Re^2: display new options based on checkbox inputs
in thread display new options based on checkbox inputs

Stop using CGI to generate HTML. It's just more work than it's worth. Either switch to a modern web framework (see Dancer) or if you insist on using CGI use a templating system (Template, HTML::Template) to keep your perl code seperate from your HTML/CSS/JS code. Essentially make an HTML/JavaScript version that does what you want to do, once working use this as a template.

  • Comment on Re^3: display new options based on checkbox inputs

Replies are listed 'Best First'.
Re^4: display new options based on checkbox inputs
by Anonymous Monk on Jul 03, 2014 at 13:35 UTC
    but how do we validate the input???