A. $_GET B. $_POST C. $_FILES D. $GLOBALS
A. 要请求的资源,即URL地址 B. 请求的方式只能是GET方式 C. 需要发送给服务器的数据,以“名=值”的方式书写 D. 告诉服务器可以回传的内容类型是什么
A. php.ini B. my.ini C. httpd.conf D. hosts
A. 200表示服务器响应成功 B. 301表示临时跳转 C. 404表示请求的服务器资源权限不够 D. 500代表程序错误
A. 支持浏览器back按钮 B. 页面无需刷新,用户体验好 C. 异步方式通信,响应快 D. 基于标准化,不需要下载插件
A. session_init B. session_start C. session_unset D. session_destroy
A. select top 3 from table B. select * from table limit 3 C. select * from table limit 1,3 D. select * from table order 3
A. mysqli_fetch_row B. mysqli_fetch_assoc C. mysqli_fetch_array D. mysqli_fetch_object
A. @section T B. @extends C. @include D. @yield