in reply to passing more than one parameter
and you want test.pl to put the 'hello' in $test1 and 'hai' in $test2, then the following code in test.pl *should* get close to what you're after:<a href=/cgi-bin/test.pl?hello=2&hai=3>TEST</a>
Although, technically, that will assign 'hello=2' to $test1 and 'hai=3' to $test2... but you should be able to split those off pretty easily$params = $ARGV[0]; ($test1, $test2) = split('&', $ARGV[0]);
I haven't tested it with an ampersand, but I know that it worked in my early app, which used the colon ':' as a separator...
Trek
|
|---|