Avoid PHP execution time limit
I need to create a script in PHP language which performs permutation of numbers. But PHP has an execution time limit set to 60 seconds. How can I run the script so that if you need to run more than 60 sesunde, not been interrupted by the server. I know I can change the maximum execution time limit in php, but I want to hear another version that does not require to know in advance the execution time of a script. A friend suggested me to sign in and log out frequently from the server, but I have no idea how to do this. Any advice is welcome. An example code would be useful. Thanks. First I need