If your url looks like this
http://www.yourdomain.com/my.php?arg1=result1&arg2=result2
The page my.php (which is the page/script you have loaded) would access those variables by using the $_GET method
$_GET['var_name']
so to access the variables arg1 and arg2
$_GET['arg1']
$_GET['arg2']
$GET is different from $get. caps make a difference. If you're on an older version of PHP, and this method doesn't work, then use
$HTTP_GET_VARS['var_name']
Cgraz