Help for this page

Select Code to Download


  1. or download this
        scalar( @reqform    ) 
        != 
        scalar( $q->param() )
    
  2. or download this
        join( $; , sort( @reqform    ) ) 
        ne 
        join( $; , sort( $q->param() ) )
    
  3. or download this
        while( ( $key, $value) = each %form )
        {
    ...
        }
    
        if( scalar @missing_params ) # ...
    
  4. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    }
    
    # carry on...