I create the code for the infinite loop like this:
<?php
while(1) {
"some code"
}
?>
Now the problem is that some times the internet connection goes down. Sometimes fatal errors occur. That's why the loop process stops. I want to run the loop forever - ignore the all the errors, warnings and notices, and run the loop forever. How do I do this?