html与php混编:
- 如果想让web服务器能自动转发这些请求, 文档的扩展名就不能是.html, 必须是.php
- 遇到一个就转发一个cgi请求, 不管这些标签出现在当前文档的什么地方
- 用户最终看到的,仍然是一个html文档, php代码中的内容不会被泄漏的
http请求类型
最常用的就是GET和POST二种请求类型
1、GET 请求
- 请求参数以键值对的方式,附加到url地址上,称为查询字符串,用?号与当前脚本分隔 ;
- url格式:index.php?name=peter&age=30 ;
- 受url长度限制, GET方式传递的数据也是有限制的;
- 服务器端脚本使用预定义变量数组 $_GET 进行接收.
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
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>get</title> </head> <body> <form action="" method="get"> <label for="email">邮箱:</label> <input type="email" id="email" name="email" value=""> <label for="password">密码:</label> <input type="password" id="password" name="password" value=""> <br/>
<!--将用户输入的内容动态添加到value字段中, 创建具有粘性的表单--> <label for="email">邮箱:</label> <input type="email" id="email" name="email" value="<?php echo isset($_GET['email']) ? $_GET['email'] : ''; ?>"> <label for="password">密码:</label> <input type="password" id="password" name="password" value="<?php echo isset($_GET['password']) ? $_GET['password'] : '';?>"> <br/>
<!--简易写法--> <label for="email">邮箱:</label> <input type="email" id="email" name="email" value="<?php echo $_GET['email'] ?? ''; ?>"> <label for="password">密码:</label> <input type="password" id="password" name="password" value="<?php echo $_GET['password'] ?? ''; ?>">
<button>登录</button> </form> </body> </html>
<?php
print_r($_GET); echo $_GET['email'];
if (isset($_GET['email'])) { echo $_GET['email']; } else { $_GET['email'] = ''; } echo isset($_GET['email']) ? $_GET['email'] : '';
echo '<pre>'; print_r($_GET); ?>
|
2、POST 请求
- 请求参数放在header请求头中发送, url地址看不到请求参数,适合敏感信息;
- 通常是通过表单提交并, 用来更新服务器上的信息;
- 适合发送大量的数据到服务器端, 长度受到配置文件限制,但比GET要大得多;
- 服务器端脚本使用预定义变量数组 $_POST 进行接收.
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
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>post</title> </head> <body> <form action="" method="post"> <label for="email">邮箱:</label> <!--将用户输入的内容动态添加到value字段中, 创建具有粘性的表单--> <input type="email" id="email" name="email" value="<?php echo isset($_POST['email']) ? $_POST['email'] : ''; ?>"> <label for="password">密码:</label> <input type="password" id="password" name="password" value="<?php echo isset($_POST['email']) ? $_POST['email'] : '';?>">
<button>登录</button> </form> </body> </html>
<?php
print_r($_POST); echo $_POST['email']; if (isset($_POST['email'])) { echo $_POST['email']; } else { $_POST['email'] = ''; } echo isset($_POST['email']) ? $_POST['email'] : '';
echo '<pre>'; print_r($_POST); ?>
|
详细资料,可参考:php中文网
CSDN博客 - PHP(二)- 前后端交互!
------------- 本文已结束 感谢您的阅读! -------------
Donate comment here.
微信支付
支付宝