in reply to passing param value throughout GET method
Then you could do something like this:$testo=qq(<a href="/cgi-bin/a_test/test.cgi?id=$id&fred=wombat">$testo +</a>);
And you would get:foreach(param()) { print "$_ = ".param($_)."<br>\n"; }
id = [whatever was in $id] fred = wombat
|
|---|