in reply to Re^3: Passing flags between invocations of a cgi script
in thread Passing flags between invocations of a cgi script

I think I have managed to make this seem more difficult than it is (which would not be a first). The user's replies are in the form of radio button clicks. Never, never, never anything more. No text fields. No nothing. They are being tested on their ability to translate English medical terms correctly. This is strictly multiple choice. It's just that if they choose wrong, I would like to leave the wrong choice up there and have them take another go at it before giving them the next word. And that is the rub. I just can't figure out a way to give them a second go. Giving them a new question is pretty straightforward. I'm not interested in their score either. They can keep score themselves. Sorry for all the bother.
  • Comment on Re^4: Passing flags between invocations of a cgi script

Replies are listed 'Best First'.
Re^5: Passing flags between invocations of a cgi script
by wanna_code_perl (Friar) on May 17, 2010 at 20:51 UTC

    For simple scripts, I might use something like:

    my $foo = $q->param('foo') // 'Default Value';

    This gives precedence to the CGI form data, but if no form data for that value exists, assign a default (which in this case is 'Default Value').

    The // operator requires Perl 5.10. Older versions of Perl will need the clumsier:

    my $foo = defined $q->param('foo') ? $q->param('foo') : 'Default Value';

    For non-trivial scripts, I usually put this in a loop, with a predetermined hash of defaults and allowed variable names. There's a good chance you'll need some additional logic as well, to validate user input and protect against invalid form submissions.

    Edit: Forgot `defined' on 2nd example, which was sort of the whole point of that example. :-) (Thanks chromatic.)

      To replicate the defined-or operator, ancient versions of Perl require the far clumsier:

      my $foo = defined $q->param('foo') ? $q->param('foo') : 'Default Value';