Blogger Information
Blog 27
fans 1
comment 1
visits 21825
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP请求类型作业 - ***五期线上班
哥特的博客
Original
732 people have browsed it

作业总结:

表单发送的时候如果使用GET方式发送,会在地址栏显示明文信息,如果使用POST发送,信息内容是加密的,尽量使用此种方式发送表单内容比较安全。

作业要求是如果php代码放在顶部,运行的时候需要如何处理?

解决方案是在顶部的php代码里做一个if判断,使用isset函数判断一下获取到的post是否有内容,如果有内容就进行打印内容。

QQ截图20190416164221.jpg

实例

<?php

	if(isset($_POST['user'])||isset($_POST['pass'])){
		echo "<pre>";
		print_r($_POST);
		echo "</pre>"; 
	}

?>

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>发送数据</title>
</head>
<body>
	<form action="" method="POST">
		<label>用户名</label>
		<input type="text" name="user" >
		<label>密码</label>
		<input type="password" name="pass" >
		<button>提交</button>
	</form>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post