i mean when i ftp some host with php sripts,
i could be running a long time, i don't want it just like that,
i wish the php script will stop after 5 seconds,
and then to excute my other function in the same php.
such as the following:
if($the_time_limit>300){
orther_function();
}else{
continue_ftp();
}
how could i do?