|
Greg, Yes that does work and I thank you for it. I could not the readparse function from cgi-lib.pl to work very frustrating. Some of my problem has been the fact that when printing the QUERY_STRING environment variable it has either been blank or is was displaying the parm holder (e.g. parm). In fact even with the code you forwarded it it still blank and this is confusing me as I suspected it should contain the value selected via the radio button. But thanks again, it is much appreciated. George...
"Greg Oziemkiewicz" <goziemki@xxxxxxxxx> 11/17/2006 2:20 PM >>>
George, Radio buttons work fine. Sorry I told you to give the radio button elements different names. This is not correct. The following works for me: <html><body> <form method=post action="/perl-bin/testRun"> <p> <table border=0> <tr><td><input type=radio name="parm" value="query"></td><td>Customer bank codes & acct #</td></tr> <p> <tr><td><input type=radio name="parm" value="oscmd"></td><td>WRKCFGSTS *NWS</td></tr> <p> <tr><td><input type=radio name="parm" value="query3"></td><td>Not enabled</td></tr> </center></table> <input type=submit value=ENTER> </form> </body></html> #!/QOpenSys/perl/bin/perl use CGI; my $cgi = new CGI; my @params = $cgi->param(); if (scalar @params != 0 ) { print $cgi->header(); print "<p>" . $cgi->param('parm') . "</p>"; } else { print "Status: 204 No Response\n"; } print $cgi->end_html(); Greg On 11/17/06, George Morey <George.Morey@xxxxxxxxxxxx> wrote:
Greg, Radio buttons out of the question with Perl? George...<form method=post action="/cgi-bin/dbtest4?parm"> <p> <table border=0> <tr><td><input type=radio name=parmvalue="query"></td><td>Customerbank codes & acct #</td></tr> <p> <tr><td><input type=radio name=parmvalue="oscmd"></td><td>WRKCFGSTS*NWS</td></tr> <p> <tr><td><input type=radio name=parm value="query3"></td><td>Not enabled</td></tr> </center></table>
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.