My project uses an open source PHP MySQL library https://github.com/ajillion/PHP-MySQLi-Database-Class
But the project mid-year report: \"Fatal error: Allowed memory
You are exceeding the maximun available memory. Yow have two options:
Increase the maximum allowed memory to each PHP script either by configuration (memory_limit
directive in php.ini
) or in execution time by using ini_set('memory_limit', '200M')
Improve the code to handle only the required information.