Page is a not externally linkable
coopster - 5:30 pm on Jul 2, 2004 (gmt 0)
In it's simplest form, you are referring to a GET request. You would format the link in such a format... isset() [php.net] <edit>Lots of help today!</edit>
Welcome to WebmasterWorld, Chadaw! http://www.mysite.com/myscript.php?picture=mypic
and in the myscript.php processing script you would retrieve the variable via the $_GET [php.net] superglobal...$picture = (isset($_GET['picture']))? $_GET['picture']) : '';
Ternary operators [php.net]