Quote:
Originally Posted by Jolten
The thing I struggle with is getting the actual page to pull the variables.
I know $_GET['var'] or $_POST['var'] but how does that relate to the serializing? is it replaced by the globalize array?
|
you gotta use the $_REQUEST['var']
PHP Code:
// globalize variables
globalize($_REQUEST, array(
'perpage' => INT,
'pagenumber' => INT,
'g' => INT,
'p' => INT,
'do' => STR,
'goto'
));