is there a way to not stop script if errors found?
php
Solution
If there are fatal errors, the script will stop no matter what and you can do nothing about it. You see there is nothing like "Resume on error" thing like that is in vb. You can suppress the errors though with @ character.
Problem
i have a php script which sometimes makes some light errors that are not important, but the script stops executing next lines. i want some `ini_set` or something to make it executes all the script even if there is warning or errors. note: i can't fix those errors. Thanks