I want to get the query string from the address bar. I couldn't find a way to do it. I was wondering if n e one could help me. Thanks
print $GLOBALS['QUERY_STRING'];
example url http://yoursite.com/default.php?Var1=apple&Var2=orange
to get them
try on default.php file
echo $GET["Var1"]; // will echo apple echo $GET["Var2"]; // will echo orange