Kontrola dokumentace
ukazuje, že vrací false
na chybě. Použijte tedy spíše návratový stav než or die()
. Pokud selže, vrátí false, což můžete zalogovat (nebo co chcete udělat) a poté pokračovat.
$rv = mysql_query("INSERT INTO redirects SET ua_string = '$ua_string'");
if ( $rv === false ){
//handle the error here
}
//page continues loading