in reply to Re^2: cgi based quiz
in thread cgi based quiz

The submit sends the parameters within the form tags, ie grp3. The grp1, and grp2 parameters are contained within other forms (without a submit)

<form action="pagefive.cgi" method="get"> <input type="radio" name="grp3" value="Correct3">Yes< +br/> <input type="radio" name="grp3" value="Incorrect3">No + <br/> <input type="submit" value="Submit"> </form>
poj

Replies are listed 'Best First'.
Re^4: cgi based quiz
by sargg55 (Novice) on Apr 23, 2016 at 11:05 UTC
    Would have probably never figured that out Thanks again.

      That's why the distribution includes documentation. And why learning to use (in this case) perldoc cgi (or, on a case-sensitive system, *nix among others, perldoc CGI) at your command prompt is worth doing.

      That's the syntax for a module you have installed; perldoc -f function name will also be useful time after time, and if you have a real interest in the breadth of built-in documentation, try perldoc perldoc.

      Update: Thanx to choroba for calling my attention to the need, for some users, to "s/cgi/CGI/"