<&"/> <&">

 >  기사  >  백엔드 개발  >  내용이 비어 있는지 여부를 PHP 양식 확인을 위한 구현 코드

내용이 비어 있는지 여부를 PHP 양식 확인을 위한 구현 코드

黄舟
黄舟원래의
2017-02-28 09:41:071146검색

빈 콘텐츠 렌더링:

내용이 비어 있는지 여부를 PHP 양식 확인을 위한 구현 코드

콘텐츠 채우기 렌더링:

내용이 비어 있는지 여부를 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[&#39;REQUEST_METHOD&#39;]=="POST"){
  if(empty($_POST[&#39;name&#39;])){
    $nameerr="必填名字";
  }else{
    $name=test_input($_POST[&#39;name&#39;]);
  }
  if(empty($_POST[&#39;email&#39;])){
    $emailerr="必填邮件";
  }else{
    $email=test_input($_POST[&#39;email&#39;]);
  }
  if(empty($_POST[&#39;web&#39;])){
    $weberr="必填网址";
  }else{
    $web=test_input($_POST[&#39;web&#39;]);
  }
  if(empty($_POST[&#39;comment&#39;])){
    $commenterr="必填备注";
  }else{
    $comment=test_input($_POST[&#39;comment&#39;]);
  }
  if(empty($_POST[&#39;gender&#39;])){
    $gendererr="必填备注";
  }else{
    $gender=test_input($_POST[&#39;gender&#39;]);
  }
}
?>
<h1>表单验证</h1>
<span class="red">*必填字段</span>
<form method="POST" action="<?php echo htmlspecialchars($_SERVER[&#39;PHP_SELF&#39;]);?>">
名字:<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/>
网址:<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="提交验证"/>
</form>
<?php
echo "名字".$name;
echo "<br/>";
echo "E-mail:".$email;
echo "<br/>";
echo "网址:".$web;
echo "<br/>";
echo "备注:".$comment;
echo "<br/>";
echo "性别:".$gender;
echo "<br/>";
?>
</body>
</html>

위 내용은 내용이 비어 있는지 여부를 확인하기 위한 PHP 구현 코드의 내용입니다. 내용이 궁금하시다면 PHP 중국어 홈페이지(www.php.cn)를 주목해주세요!


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.