I'm working on a Website made with the proprietary DBMS "4th Dimension". I'm really struggling with this, as I'm still a beginner, and I only have experience with PHP on client-server apps. 4D provides a Web Server that can handle GET and POST requests, and send basic responses to the client.
My question is:
There seems to be no equivalent of PHP's $_SESSION
to store persistant variables, but I have to keep a browsing history during the visitor's session, what's the good way to achieve that?
I don't even have a clue on how I could identify a single visitor during his visit. I would really appreciate some help. Regards, caffein
TL;DR What's the best way to mimic PHP's session in any language?