I have a finished and working system, done entirely in ASP.
I am rewriting version 2.0 of it, and as I will review it 100%, I decided to try my luck with PHP. A problem has arisen in user control:
I need to be in control of how many concurrent users are using the system, since usage monthly fee negotiations are tied to this.
In ASP the control was done through ASP Application Object
, which is a kind of global object accessible by all instances running the application (more information about it in this link ).
I've fished about this but I have not found anything concrete about the best ways to do this in PHP, does anyone have any experience with something like this?