- or download this
if ( defined( $q->param( "myinput" ) ) ) {
print( $q->param( "myinput" ) );
}
- or download this
my $value = $q->param( "myinput" );
print( $value ) if ( $value );
- or download this
my $value = $q->param( "myinput" );
print( $value ) if ( defined( $value ) );