I have 8 files each of which adds 100,000 lines to my sql database table
Each file works OK when run individually, however when I try using includes to run as a batch it stops halfway through second file
500 >:(
End of script output before headers
here’s the script
<?php set_time_limit(0); include('1.php'); echo "Uploaded Section 1"; include('2.php'); echo "Uploaded Section 2
"; include('3.php'); echo "Uploaded Section 3
"; include('4.php'); echo "Uploaded Section 4
"; include('5.php'); echo "Uploaded Section 5
"; include('6.php'); echo "Uploaded Section 6
"; include('7.php'); echo "Uploaded Section 7
"; include('8.php'); echo "Uploaded Section 8
"; echo"Uploads complete"; ?>
any ideas