Hi all!
i need to know how many concurrents sessions can PHP handles???
Thank's!
That depends on what you mean by a session. If you mean concurrent PHP scripts, that depends on how big your server is. If you mean PHP-sessions, using the phpsessid, those are just files stored on disk, so there is virtually no limit.
Hi Vincent!
Thank's a lot!!!