brug php try catch
, dens undtagelseshåndtering bruges til at ændre det normale flow af kodeudførelsen, hvis der opstår en specificeret fejl.
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;
}