I'm currently in the process of migrating servers.
My old server accepted GET/POST variables without defining them, for example:
$model_id = $model_id;
But on my new server, variables needs to be defined, eg:
$model_id = $_REQUEST['model_id'];
I'm trying to save time without having to rewrite all existing scripts, is there a quick solution?