usa php try catch
, la relativa gestione delle eccezioni viene utilizzata per modificare il normale flusso di esecuzione del codice se si verifica un errore specificato.
try {
$con = mysqli_connect("localhost","my_user","my_password","my_db");
if(!$conn) {
throw new Exception('Failed');
}
} catch(Exception $e) {
echo 'Server error. Please try again some time.';
die;
}