hello,
I have been looking at many examples around the web (zend, here, php.net, etc)
I am confused when to use which code on different versions of php.
my local setup uses php version 4.1.1 on windows
my hosting provider uses php version 4.0.6 on unix
(i know to change the save_path for unix vs.windows)
I had code working using session, which worked on my local setup.
When I moved it to the server, it did not.
I changed the session to http_session_vars...
that did not seem to help.
I even changed to using session_register() and it is still not working on my local.
Can someone tell me what to use for version 4.0.6, that will also work in 4.1.1?
Also, a quick easy example of which functions to call?
THANK YOU!!!!