Not for 'how-to' coding questions but PHP theory instead, this forum is here for those of us who wish to learn about design aspects of programming with PHP.
What is the maximum limit of the number of session variables that are allowed to be used? What is the maximum size limit (storage) of these session variables? Someone help me with atleast an approximate range.
PHP Manual - Session handling functions wrote:The session support allows you to register arbitrary numbers of variables to be preserved across requests.
All session data is stored in the specified directory (usually "/tmp") - so the quantity of session data you want to store depends on that.