
September 27th, 1999, 03:23 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Since HTTP is stateless, without some sort of session tracking you're using the only available method.
I recommend looking into PHPLib (http://phplib.netuse.de), or considering PHP4's built in session management functions.
Your other option is to roll a bit of your own session management and use a database or flat file to save/load variables from based a cookie or session ID (but that's what PHPLib does already).
|