in reply to HTTP redirection and parameter access

Maybe I'm missing something, but wouldn't you just pass the parameter in the URL?
$q->redirect( -url => 'url/module2.cgi?Product_id=1234', -cookie => $cookie, );
--Dave

Replies are listed 'Best First'.
Re: Re: HTTP redirection and parameter access
by sshukla (Novice) on Feb 26, 2002 at 18:47 UTC
    I tried $q->redirect( -url => 'my_url/module2.cgi', -cookie => $cookie, -name => 'Product_id', -value => "$product_id" ); and was getting error. Thanks Saumil