Hi,
if you don't want to handle each single $POST var or use $POST as a variable name, just set this piece of code at the beginning of your script(-s):
if(!empty($_GET))
extract($_GET);
if(!empty($_POST))
extract($_POST);
Each time the script is reloaded the variables, arrays and values from $GET and $POST are extracted so you can use your custom variables without having to care about naming.
Best regards
gaucho