Help for this page

Select Code to Download


  1. or download this
    Q:\>perl -MCGI -le "foreach( keys CGI::Vars() ) { print }"
    Type of arg 1 to keys must be hash (not subroutine entry) at -e line 1
    +, near ") ) "
    Execution of -e aborted due to compilation errors.
    
  2. or download this
    Q:\>perl -MCGI -le "foreach( keys %{ CGI::Vars() }) { print }"
    
    Q:\>