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

Thanks for it, i am pretty much new to perl, and not sure how to pull js here.. any examples will be great...
  • Comment on Re^2: display new options based on checkbox inputs

Replies are listed 'Best First'.
Re^3: display new options based on checkbox inputs
by marto (Cardinal) on Jul 03, 2014 at 13:29 UTC

    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.

      but how do we validate the input???