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