Re: [PHP] Distinguishing between multiple browser windows for thesame php session

2005-09-03 Thread Gustav Wiberg
multiple browser windows for thesame php session Gustav Wiberg wrote: ?php echo $_SELF;? ? Please don't top-post [1]. This will not work. $_SELF isn't even a defined variable, unless you defined it yourself. PHP works on the server, *before* anything is sent on the client, so it has

Re: [PHP] Distinguishing between multiple browser windows for thesame php session

2005-09-03 Thread Chris Stenton
Gustav Wiberg wrote: ?php echo $_SELF;? ? Please don't top-post [1]. This will not work. $_SELF isn't even a defined variable, unless you defined it yourself. PHP works on the server, *before* anything is sent on the client, so it has no way to know client-side things like what

Re: [PHP] Distinguishing between multiple browser windows for thesame php session

2005-09-03 Thread Satyam
Chris Stenton [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Gustav Wiberg wrote: ?php echo $_SELF;? ? Please don't top-post [1]. This will not work. $_SELF isn't even a defined variable, unless you defined it yourself. PHP works on the server, *before* anything is sent on