Help for this page

Select Code to Download


  1. or download this
    if ($method ne "GET") {
        if ($method ne "POST") {
            msg(400);
        }
    }
    
  2. or download this
    if ($method ne "GET" && $method ne "POST")
    {
        msg(400);
    }
    
  3. or download this
    open(FILE1, $ARGV[0]);
    @lines = <FILE1>;