I want to export my result set, of about 26000 records, into csv.
It's not working when it goes past the 10000 range.
Even after I have changed the max_execution_time
to 60 in php.ini.
My code looks like this:
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header( "Content-disposition: filename=".$filename.".csv");
print "$header\n$output";
Can anyone give me a heads up to where I'm going wrong?