WIKINDX METHODS

Method:
getVars()

Class:
INIT

Method Call:
include_once("core/init/INIT.php");
$init = new INIT();
ARRAY $init->getVars();

Description:

Returns an associative array of POST or GET variables. It doesn't matter whether such input comes in as $_GET, $_POST, $HTTP_GET_VARS or $HTTP_POST_VARS; the getVars() method will work regardless as long as it is called via the object syntax:

	$init = new INIT();
	$vars = $init->getVars();

Usage:
The array returned is one of the main variables passed around the system usually as $this->vars.

WIKINDX home      WIKINDX usage      WIKINDX classes