The easiest way is to turn globals on.
if you can't do so, maybe you just need to extract() the $_REQUEST array.
if this isn't working (following is IMHO the best way), search for variables in your script that are submitted via POST or GET and "import" them at the beginning of your scripts.
$var = strip_tags($_GET['var']);