11-07-2008, 05:19 PM
|
#6 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
The set_time_limit function can only be called at runtime, so the code must be in each file, or in the root file, to which that'll then affect all the others below it.
php Code:
include_once 'File-1.php'; // Default timeoutset_time_limit(60); // 60 second timeoutinclude_once 'File2-.php'; // 60 second timeoutinclude_once 'File3-.php'; // 60 second timeout
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|