To use variables as part of a url you just make up the URL in the following format:
page.php?var1=value1&var2=value2
You might also want to have a look at the
urlencode() function too!
On the page accessed using these variables, you can use a multitude of methods.
If the register_globals setting is ON (set to off in PHP 4.2.0 and later by default), you can just call $var1 and $var2.
Otherwise you can use $HTTP_GET_VARS['var1'] and $HTTP_GET_VARS['var2'].
In PHP 4.1.0 and later they've introduced Super Global Arrays, so you can access them by $_GET['var1'] and $_GET['var2']. As these arrays are
Super Global, there's no need to declare them as global in functions!
BTW, you're not the same shufty as on a popular DVD forum, are you? :wink: