What he said is true, but, for example:
$url = 'http://www.test.com/?value='.urlencode($_GET['value']);
Now it'll put that variable after the url (in th above example).
But indeed, PHP is server-side, so you'll have to pass the info along, via $_GET (as above), $_POST (if using forms), cookies, or sessions.
Hmm, hope that halfly helps.
__________________ |