You can skip the first part four or so posts and go right to the part marked NEW DEVELOPMENT
This may be the wrong question but, without using the url is there any way to pass a variable on to another page? (but read more before you answer)
My question may not yield what I'm really looking for so here's the real situation: I have a page which uses an include function to call a header and a footer file. All of these pages are php. I want to put something in my header file that will display $photo. BUT I want to asign the value of $photo in my regular page (not in the header). If I type this in my header file:
print "<img src=\"http://www.mysite.com/graphics/".$photo."\">\n;
then it will get parsed into regular html (<img src="http://www.mysite.com/graphics/">), losing the variable part before it gets included in my regular page (which is where I want the php script to actually work).
If this garbled mess makes sense to anybody, please tell me if this can be done easily without utilizing the url.
Thanks!