I have a MySQL table which contains 6.5 million records. When I try to access that table from phpMyAdmin I get:
Fatal error: Maximum execution time of
This solution has resolved the issue Place the following lines at the top of the script page and before the query that initiates the memory:
ini_set('max_execution_time', 0); set_time_limit(1800); ini_set('memory_limit', '-1');