Try set_time_limit(0);
at the top of your script.
set_time_limit sets the maximum execution time in seconds. If set to zero, no time limit is imposed (see PHP manual).
Try set_time_limit(0);
at the top of your script.
set_time_limit sets the maximum execution time in seconds. If set to zero, no time limit is imposed (see PHP manual).