I have developed systems using php for few years. Therefore I know about $_SESSION
, browser session well. But I need to know can I create a Session on web site hosted apache server from a php call and access that session from different PCs ?
Here are the example scenario:-
My web site is abc.com
(assumption).
There are two users from two different PCs.
User A click on a button on my app can that button click call should create session (not a browser/user session but server session) in web server and User B should be able to access it.
I know there is a trick by save in a db and read it from user B. But I need to know another way because db read is time consuming. Is there a way ? Thanks