1 需要用到的方法有四种
全局变量:
$_Get; Get 方法通过 URL 请求来传递用户的数据,将表单内各字段名称与其内容,以成对的字符串连接,置于 action 属性所指程序的 url 不需要表单提交
例子如下
<A href="http://域名/xxx.php?id=0001" >叶问</A>
<A href="http://域名/xxx.php?id=0002">泰囧</A>
$_POST POST方法是需要用户提交表单的一种参数传递方法,这些一般必须由用户亲自提供参数 需要表单提交
<form action="http:/域名/xx.php" method="post">
账户: <INPUT name="账户" type="text"/>
密码: <INPUT name="密码" type="password"/>
<INPUT value="提交" type="submit"/> 需要在html中写入
enctype="multipart/form-data":方可进行使用,这样才能提交数据
$_REQUEST[]具用$_POST[] $_GET[]的功能,但是$_REQUEST[]比较慢。通过post和get方法提交的所有数据都可以通过$_REQUEST数组获得
$_file为文件上传
2 ajax的基本写法有
$.ajax({
url: 'delwed.php',
data: {id,id},
dataType: 'json',
type: 'post',
success: function(res)
}