on a successful submission, redirect the user to a success page. If you don't have one, just create a simple HTML/PHP page
success.php
<?php
echo "Successful submission";
?>
Your page with the form add this to bottom of your check
if (empty($errors)) {
mail('email@email.com', 'Contact Form', 'Name: '.$_POST["name"] . '
Telefonnummer:' .$_POST["phonenumber"]);
$_POST['name'] = '' ;
$_POST['phonenumber'] = '' ;
$_POST = null;
header('Location: http://www.domainname.com/success.php');
}