I am having a two dimensional PHP array which I need to iterate and show the array data in HTML controls. Array is huge (about 2500 rows and 25 columns for each row), it renders around 10MB web page (on my local system). But this do not display any thing on server and shows a blank page (WSOD - White screen of death). I have to show all data at once (no paging) post_max_size and upload_max_filesize are set to 50M in php.ini/.htaccess, I have confirmed this using phpinfo max_execution_time is 600 Seconds (10 minutes)
I have used
error_reporting(E_ALL);
ini_set('display_errors', 1);
but no errors are displayed.
In apache Error log I am having Fatal Error Allowed memory size of 210763776 bytes exhausted, Its strange because it makes 200 MB? Why this is happening? Whats the solution?
What can be possible issue and solution?
Thanks in advance,