använd php try catch
, dess undantagshantering används för att ändra det normala flödet av kodexekveringen om ett specificerat fel uppstår.
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;
}