I want to store a value in a variable on the server side such that all clients connected to the server can get the latest value. I do not want to store it in a database or file. Is there a solution?
Not as far as I am aware.
Nick
I think u can store it a session or a cookie
mandar
Session vars and cookies are not available to all clients.
The only way is files, databases, and possibly shared memory.
Hi Sessions and cookies are for use with individual users.
Shared memory is the only way if you can't use files or databases.