I've seen several PHP scripts pass variables in the URL, like this:
http://www.mattfaus.com/index.php?var1=value&var2=valueagain&var3=yada3
I know how I would construct the URL with PHP, but all I really need to know is how to get the data from the variables in the URL.
Ok, say I make a page that links to http://www.mattfaus.com/index.php?var1=value&var2=valueagain&var3=yada3 . How do I use the values of var1, var2, and var3 within index.php?