博客列表 >PHP运行原理及get和post提交数据方法-2019年4月15日

PHP运行原理及get和post提交数据方法-2019年4月15日

蛋糕356的博客
蛋糕356的博客原创
2019年04月16日 04:16:431021浏览

一、手绘PHP运行原理如图QQ图片20190416041207.jpg

二、PHP中get提交方法:提交数据以明文发送,数据不安全,传输数据有大小限制,案例代码如下

实例

<?php
if (!empty($_GET)){
    print_r($_GET);}else{
    print("请输入邮箱或密码");
}
?>
<!doctype html>
<html>
<head>
    <title>
        get提交
    </title>
</head>
<body>
<form action="" method="get">
<p>
    邮箱:<input type="email" name="email" value="">
</p>
<p>
    密码:<input type="password" name="password" value="">
</p>
<button>登录</button></form>
</body>
</html>

运行实例 »

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

三、PHP中post提交数据方法:提交数据不以明文发送,发送数据比较安全,传输数据也有大小限制,但比get提交的方法传输的数据要大得多,案例代码如下:

实例

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2019/4/16
 * Time: 4:06
 */
if (!empty($_POST)){
    print_r($_POST);}else{
    print("请输入邮箱或密码");
}
?>
<!doctype html>
<html>
<head>
    <title>
        post提交
    </title>
</head>
<body>
<form action="" method="post">
<p>
    邮箱:<input type="email" name="email" value="">
</p>
<p>
    密码:<input type="password" name="password" value="">
</p>
<button>登录</button></form>
</body>
</html>

运行实例 »

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

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议