in reply to Re: Re: Getting arguments such as ?page=20 for web scripts
in thread Getting arguments such as ?page=20 for web scripts
if you want to look at your query string as it comes in.<form METHOD="POST" ACTION="/cgi-bin/your_script.cgi" ENCTYPE="applica +tion/x-www-form-urlencoded"> <input type="text" name="param_name" > </form>
grep#!/usr/bin/perl -Tw use strict; use CGI; my $q = new CGI; print $q->header; print $q->query_string;
|
|
|---|