Help for this page

Select Code to Download


  1. or download this
    if($cgi->param('MyBOX') eq 'on'){
       #Do whatever
    }else{
       #...
    }
    
  2. or download this
    if($cgi->param('MyBOX')){
       #Do whatever
    }else{
       #...
    }