Contributed by Zombie dima
on Mar 27, 2002 at 00:20 UTC
Q&A
> CGI programming
Description: <input type="checkbox" name="checkbox" value="on" checked>
When I print the value of checkbox it prints blank instead of on, and thats why pearl code below always goes into else statement. What should I do so that I can check if the checkbox is marked or not?????? Thanks a lot!!!!
if ($field{'checkbox'})
{
# checkbox was checked
$chkbutton1 = "Yes send me news letter";
}
else
{
# checkbox left unchecked
$chkbutton1 = "No don't send me news letter";
}
Answer: How do I check if checkbox in the form was checked or not? contributed by Flame First, allways "use CGI;" to get values, it's simple, safe, and effective.
Second, you need to make sure you specify a value for the checkbox if you really want to be able to see if it is checked.
Eg: <INPUT TYPE=CHECKBOX NAME="MyBOX" VALUE="on">
Code:
if($cgi->param('MyBOX') eq 'on'){
#Do whatever
}else{
#...
}
This should also work:
if($cgi->param('MyBOX')){
#Do whatever
}else{
#...
}
But the first is a little more paranoid.
Hope this helps... |
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|