PDA

View Full Version : how to import


meediake
11-25-2003, 07:26 PM
how to import this variable? in PHP its just $variable, or if register_globals=off, then it has to $_GET[variable] , but how to do it CGI?

dswimboy
11-26-2003, 06:49 AM
if you're referring to your previous post:


use CGI;

$query = new CGI;

$variable = $query->param("VARNAME");