Hi,
On depending from method and php.ini you can access it in different manner:
$GET["var1"] e $GET["var2"] if your form's method is get
$POST["var1"] e $POST["var2"] if your form's method is post
just $var1 e $var2 if global are on in php.ini
see you