usa php try catch
, su manejo de excepciones se usa para cambiar el flujo normal de la ejecución del código si ocurre un error específico.
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;
}