Where would I put that in the *.php files or in the php.ini?
Also, I have never had the problem with the script before! On Monday they were working fine.
I tried the time_limit code:
PHP Code:
set_time_limit(2);
ob_start(); // buffer output
function shutdown () {
// print only first 2000 characters of output
$out = ob_get_clean();
print substr($out, 0, 2000);
}
register_shutdown_function('shutdown');
However, the problem still occurs!
I need a way of testing the scripts and seeing the output on the screen when the scripts are running.
Edit:
The data now gets submitted to the database! In some scripts I had a double up of the same variables possibly because of adding the "mysql_escape string" to the code.