Hi!
I've just finished a project where I consequently use $PHP_SELF to link between my pages.
A smooth way to do things, I thought...but on one computer the $PHP_SELF dissapeared...the links were made like http://www.mydomain.com/?some_vars=some_val.
But I need http://www.mydomain.com/index.php?some_vars=some_val.
Does this have something to do with accepting coockies, or....what ?
Thanks for answering :-)
Torbjørn
hm, strange. one suggestion ... do you use $PHP_SELF in a function? if so, don't forget to declare it global ...
Oh - so I have to do that ? It works fine on one of my computers, but not on the other... But ok - I'll try that !