mysql_query("SELECT active... WHERE account = '".$account."'")
x = 1;
where(x<10){
if($active == 1){
mysql_query("UPDATE scriptstatus SET active = '0' WHERE account = '".$account."'");
/// Script with errors
x++;
}
}
mysql_query("UPDATE scriptstatus SET active = '1' WHERE account = '".$account."'");
I have a script, but it has errors and that makes the script to stop.
Can I force the script to run until the end?
mysqlextension usePDOorMysqli.