Help for this page

Select Code to Download


  1. or download this
    if (exists $INC{$filename}) {
       return 1 if $INC{$filename};
       die "Compilation failed in require";
    }
    
  2. or download this
    use strict;
    BEGIN{
            $INC{'CGI.pm'} = undef;
    }
    use CGI;