Blogger Information
Blog 40
fans 0
comment 0
visits 29258
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php基础--2019-06-03
小人物的博客
Original
817 people have browsed it
  1. 画图分析php程序的运行原理

    php工作原理.jpg
     

  2. GET请求与POST请求的区别

GET请求
请求参数放在`header`请求头中发送, url地址看不到请求参数,适合敏感信息
* 通常是通过表单提交并, 用来更新服务器上的信息
* 适合发送大量的数据到服务器端, 长度受到配置文件限制,但比`GET`要大得多
* 服务器端脚本使用预定义变量数组 `$_POST` 进行接收

POST请求
请求参数放在`header`请求头中发送, url地址看不到请求参数,适合敏感信息
* 通常是通过表单提交并, 用来更新服务器上的信息
* 适合发送大量的数据到服务器端, 长度受到配置文件限制,但比`GET`要大得多
* 服务器端脚本使用预定义变量数组 `$_POST` 进行接收


3. 如何将php脚本嵌入到html代码中

只需将php脚本用  <? PHP脚本 ?> 方式嵌入html代码

4. php应用程序中的基本结构与include的作用

php应用程序中基本结构:头部,主体,尾部三部分
include作用是调用写好的php脚本,模块化可使程序更加简洁

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post