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."'");
我有一个脚本,但它有错误,这使脚本停止。
我可以强制脚本运行到最后吗?