in reply to CGI variables

if you use CGI.pm you can do
$query->import_names('NAMESPACE');
so you can access it with $NAMESPACE::thing
importing into namespace 'main' will do the trick but is a _major_ security risk!!
don't do that!
(someone could override your own variables..
..like in PHP :)