Hi guys, I want to increase the timeout time for a particular function "set_time_limit"...but need more help about it. can anyone give me some examples regarding it? more deatiled help on it and some other way of doing it is also very welcome
ashay
what i mean is ..i want to increase the timeout time for a particular PHP
look up: set_time_limit()
http://www.php.net/manual/en/function.set-time-limit.php
All you need to do is stick :
set_time_limit(seconds)
in your script. Where seconds is equal to the new limit you want to set. You can set it to 0 to eliminate the time limit.
Matt Wade codewalkers.com