David T-G wrote:
I'm a bit confused...  I haven't tried this yet, so maybe it will all
come clear when I do, but I'm still confused!  So where I currently have

  session_name($wfname) ;
  session_start ;
  ...

I'd instead have

  session_name($wfname) ;
  $_COOKIE[$wfname] = $_COOKIE['locscout'] ;
  session_start ;
  ...

or so.  But what does that buy me?  How will then setting my password at
one level (presentation) also set it at another (gallery)?


You will have the same session variables accessible in your script.


I forgot to mention you should do the same for $_GET and $_POST if you want it to work without cookies.


TIA & HAND


:-D

-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to