in reply to Passing params between CGIs

I think that you are talking about passing parameters to another CGI through the query string.

Perhaps something like this:
$cgi->a({href=>"showhit.cgi?query=$data->[0]&hit=$data->[1]"}, 'hit');

Replies are listed 'Best First'.
Re: Re: Passing params between CGIs
by Anonymous Monk on May 23, 2003 at 20:59 UTC
    I told you I was new to CGI. What I should have mentioned is that I am fairly new to Web programming in general; it's these sorts of common sense things that I expect to shoot me in the foot. Yes that does exactly what I want. Thanks so much.