PHP表单验证内容是否为空的实现代码

2025-05-29 0 21

内容为空效果图为:

PHP表单验证内容是否为空的实现代码

填写内容效果图:

PHP表单验证内容是否为空的实现代码

下面是验证程序的代码:

PHP表单验证内容是否为空的实现代码

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79
<!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="必填网址";

}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>表单验证</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/>

网址:<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表单验证内容是否为空的实现代码全部内容了,希望大家多多支持快网idc~

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 PHP表单验证内容是否为空的实现代码 https://www.kuaiidc.com/95890.html

相关文章

发表评论
暂无评论