《PHP學(xué)習(xí):PHP表單驗(yàn)證內(nèi)容是否為空的實(shí)現(xiàn)代碼》要點(diǎn):
本文介紹了PHP學(xué)習(xí):PHP表單驗(yàn)證內(nèi)容是否為空的實(shí)現(xiàn)代碼,希望對(duì)您有用。如果有疑問(wèn),可以聯(lián)系我們。
內(nèi)容為空效果圖為:PHP教程
PHP教程
填寫(xiě)內(nèi)容效果圖:PHP教程
PHP教程
下面是驗(yàn)證程序的代碼:PHP教程
PHP教程
<!doctype html> <html> <head> <meta http-equiv="conent-type" content="text/html" charset="utf-8"/> <style> .red{ color:red; } </style> </head> <body> <?php function test_input($data){ $data=trim($data); $data=stripslashes($data); $data=htmlspecialchars($data); return $data; } ?> <?php $name=$email=$web=$comment=$gender=""; $nameerr=$emailerr=$weberr=$commenterr=$gendererr=""; if($_SERVER['REQUEST_METHOD']=="POST"){ if(empty($_POST['name'])){ $nameerr="必填名字"; }else{ $name=test_input($_POST['name']); } if(empty($_POST['email'])){ $emailerr="必填郵件"; }else{ $email=test_input($_POST['email']); } if(empty($_POST['web'])){ $weberr="必填網(wǎng)址"; }else{ $web=test_input($_POST['web']); } if(empty($_POST['comment'])){ $commenterr="必填備注"; }else{ $comment=test_input($_POST['comment']); } if(empty($_POST['gender'])){ $gendererr="必填備注"; }else{ $gender=test_input($_POST['gender']); } } ?> <h1>表單驗(yàn)證</h1> <span class="red">*必填字段</span> <form method="POST" action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']);?>"> 名字:<input type="text" name="name"/><span class="red"><?php echo "*".$nameerr;?></span> <br/> E-mail:<input type="text" name="email"/><span class="red"><?php echo "*".$emailerr;?></span> <br/> 網(wǎng)址:<input type="text" name="web"/><span class="red"><?php echo "*".$weberr;?></span> <br/> 備注:<textarea rows="10" cols="40" name="comment"></textarea><span class="red"><?php echo "*".$commenterr;?></span> <br/> 性別:<input type="radio" name="gender" value="男"/>男<input type="radio" name="gender" value="女"/>女<span class="red"><?php echo "*".$gendererr;?></span> <br/> <input type="submit" value="提交驗(yàn)證"/> </form> <?php echo "名字".$name; echo "<br/>"; echo "E-mail:".$email; echo "<br/>"; echo "網(wǎng)址:".$web; echo "<br/>"; echo "備注:".$comment; echo "<br/>"; echo "性別:".$gender; echo "<br/>"; ?> </body> </html>
以上就是小編為大家?guī)?lái)的PHP表單驗(yàn)證內(nèi)容是否為空的實(shí)現(xiàn)代碼全部?jī)?nèi)容了,希望大家多多支持維易PHP~PHP教程
轉(zhuǎn)載請(qǐng)注明本頁(yè)網(wǎng)址:
http://www.fzlkiss.com/jiaocheng/2784.html