Ultimele tutoriale de dezvoltare web
 

PHP 5 Formulare - Validează E-mail și adresa URL


Acest capitol arată cum să valideze nume, e-mail-uri și adrese URL.


PHP - Nume Validează

Codul de mai jos arată o modalitate simplă de a verifica dacă câmpul nume conține numai litere și spații albe. În cazul în care valoarea câmpului Numele nu este valid, apoi stoca un mesaj de eroare:

$name = test_input($_POST["name"]);
if (!preg_match("/^[a-zA-Z ]*$/",$name)) {
  $nameErr = "Only letters and white space allowed";
}
Notă Funcția preg_match () caută un șir de model, revenind adevărat dacă există model, și fals în caz contrar.

PHP - Validează E-mail

Cel mai simplu și mai sigur mod de a verifica dacă o adresă de e-mail este bine formată este de a utiliza funcția PHP filter_var ().

În codul de mai jos, în cazul în care nu este bine format adresa de e-mail, apoi a stoca un mesaj de eroare:

$email = test_input($_POST["email"]);
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
  $emailErr = "Invalid email format";
}

PHP - Validează URL

Codul de mai jos arată o modalitate de a verifica dacă o sintaxă adresă URL este validă (this regular expression also allows dashes in the URL) , de (this regular expression also allows dashes in the URL) , (this regular expression also allows dashes in the URL) - (this regular expression also allows dashes in the URL) . Dacă sintaxa adresă URL nu este validă, apoi stoca un mesaj de eroare:

$website = test_input($_POST["website"]) ;
if (! preg_match("/\ b(?:(?:https?|ftp) :\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$website)) {
  $websiteErr = "Invalid URL";
}

PHP - Validează Nume, E-mail și adresa URL

Acum, script-ul arată astfel:

Exemplu

<?php
// define variables and set to empty values
$nameErr = $emailErr = $genderErr = $websiteErr = "";
$name = $email = $gender = $comment = $website = "";

if ($_SERVER["REQUEST_METHOD"] == "POST") {
  if (empty($_POST["name"])) {
    $nameErr = "Name is required";
  } else {
    $name = test_input($_POST["name"]);
    // check if name only contains letters and whitespace
    if (!preg_match("/^[a-zA-Z ]*$/",$name)) {
      $nameErr = "Only letters and white space allowed";
    }
  }

  if (empty($_POST["email"])) {
    $emailErr = "Email is required";
  } else {
    $email = test_input($_POST["email"]);
    // check if e-mail address is well-formed
    if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
      $emailErr = "Invalid email format";
    }
  }

  if (empty($_POST["website"])) {
    $website = "";
  } else {
    $website = test_input($_POST["website"]);
    // check if URL address syntax is valid (this regular expression also allows dashes in the URL)
    if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$website)) {
      $websiteErr = "Invalid URL";
    }
  }

  if (empty($_POST["comment"])) {
    $comment = "";
  } else {
    $comment = test_input($_POST["comment"]);
  }

  if (empty($_POST["gender"])) {
    $genderErr = "Gender is required";
  } else {
    $gender = test_input($_POST["gender"]);
  }
}
?>
Run exemplu »

Următorul pas este de a arăta modul de a preveni forma de golire toate câmpurile de intrare atunci când utilizatorul trimite formularul.