in reply to Clean URLs and CGI.pm
FETCHING A LIST OF KEYWORDS FROM THE QUERY:If the script was invoked as the result of an <ISINDEX> search, the parsed keywords can be obtained as an array using the keywords() method.@keywords = $query->keywordsFETCHING THE NAMES OF ALL THE PARAMETERS PASSED TO YOUR SCRIPT:
If the script was invoked with a parameter list (e.g. ``name1=value1&name2=value2&name3=value3''), the param() method will return the parameter names as a list. If the script was invoked as an <ISINDEX> script and contains a string without ampersands (e.g. ``value1+value2+value3'') , there will be a single parameter named ``keywords'' containing the ``+''-delimited keywords.@names = $query->param
Gary Blackburn
Trained Killer
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Clean URLs and CGI.pm
by swiftone (Curate) on Jun 11, 2001 at 20:26 UTC | |
by Trimbach (Curate) on Jun 11, 2001 at 21:40 UTC | |
by swiftone (Curate) on Jun 11, 2001 at 22:21 UTC | |
by thpfft (Chaplain) on Jun 12, 2001 at 00:25 UTC | |
by swiftone (Curate) on Jun 12, 2001 at 00:50 UTC |