in reply to cgi script does not pull the values from the radio buttons

This is not a Perl problem. All of your radio buttons have the attribute of value="", so no value is sent regardless of whether or not you check one of the radio buttons. Assign them values and that will take care of you problem.

Also, you shouldn't use a globally defined CGI object. You're just begging for trouble. See 'use strict' is not Perl for more info.

Cheers,
Ovid

Vote for paco!

Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.

  • Comment on (Ovid) Re: cgi script does not pull the values from the radio buttons

Replies are listed 'Best First'.
Re: (Ovid) Re: cgi script does not pull the values from the radio buttons
by Anonymous Monk on Sep 08, 2001 at 00:22 UTC

    Thanks so much for the info. I will tell my html people that the need to fix there code. Thanks a bunch.

    This helps so much.

    Satanya