la fonction est morte ($error) {
// votre code d'erreur peut aller ici ?
? ? JE VEUX METTRE LE HTML PAGE ICI AVEC DES ERREURS
? >
tout le HTML que vous voulez
echo "We are very sorry, but there were error(s) found with the form your submitted. ";
echo "These errors appear below.
";
echo $error."
";
echo "Please go back and fix these errors.
";
die();
}
// validation expected data exists
if(!isset($_POST['first_name']) ||
!isset($_POST['last_name']) ||
!isset($_POST['email']) ||
!isset($_POST['telephone']) ||
!isset($_POST['comments'])) {
died('We are sorry, but there appears to be a problem with the form your submitted.');
}
|