create a php block that calls the following function, which you should place into your lib-custom.php:
Text Formatted Code
function phpblock_getget(){
if (isset($_GET['variable'])){
$variable = $_GET['variable'];
}
return $variable;
}
something like that.