- or download this
<select name="report_type" >
<option value="case_id">case_id</option>
...
<option value="receiver">receiver</option>
<option value="date">date</option>
</select>
- or download this
print "param=" . $q->param('report_type') . "<BR>";
if( grep { /$q->param('report_type')/ } (qw/case_id hosp_alias sender
+receiver/) ) {
...
} else {
print "we are NOT getting the list<BR>";
}
- or download this
param=sender
we are NOT getting the list
- or download this
param=sender
we are getting the list
- or download this
#!/usr/bin/perl
...
} else {
print "not getting the list\n";
}
- or download this
getting the list