PHP - 驗證 Name, E-mail, 和 URL

來源:互聯網
上載者:User
以下是源碼:

<html><head><style>.error{color:#FF0000;}style>head><body>// 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 whitespaceif (!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 syntax is validif (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/",$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"]);}}functiontest_input($data){$data = trim($data);     $data = stripslashes($data);     $data = htmlspecialchars($data);     return$data;}?><h2>PHP Form Validation Exampleh2><p><spanclass="error">* required field.span>p><formmethod="post"action="PHP_SELF"]);?>">    Name: <inputtype="text"name="name"><spanclass="error">* echo$nameErr;?>span><br><br>   E-mail: <inputtype="text"name="email"><spanclass="error">* echo$emailErr;?>span><br><br>   Website: <inputtype="text"name="website"><spanclass="error">echo$websiteErr;?>span><br><br>   Comment: <textareaname="comment"rows="5"cols="40">textarea><br><br>   Gender:   <inputtype="radio"name="gender"value="female">Female   <inputtype="radio"name="gender"value="male">Male   <spanclass="error">* echo$genderErr;?>span><br><br><inputtype="submit"name="submit"value="Submit">form>echo"

Your Input:

";echo$name;echo"
";echo$email;echo"
";echo$website;echo"
";echo$comment;echo"
";echo$gender;?>body>html>

以上就介紹了PHP - 驗證 Name, E-mail, 和 URL,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.