标签:block 代码 file 取数据 相同 title tps 输入 require
区别(get和post)
2.get的的理论提交数据1024个字节
post没有理论上没有限制
3.get是从服务器上获取数据
post是向服务器传送数据
4.get安全性非常低
post安全性较高
5.get提交参数会在URL上显示,不安全
post不会,更安全
6.get数据使用$_GET
post的数据使用$_POST
- method = ‘post’;
2.input type = ‘files’ name = ‘img’
3.
如果不转移走文件,文件自动删除
move_uploaded_file(filename,destination);
参数1要移动的文件,参数2移动的目标路径
举例
文件后缀大部分时间没有任何作用,index.php和index.pel 是一样的
在PHP变成中,include()与require()的功能相同,include(include_once) 与 require(require_once)都是把把包含的文件代码读入到指定位置来,但是二者再用法上有区别:(include()是有条件包含函数,而require()则是无条件包含函数)
标签:block 代码 file 取数据 相同 title tps 输入 require
原文地址:https://www.cnblogs.com/lijianming180/p/12226072.html