【问题标题】:Are Post and Get methods part of the PHP language or URLPost 和 Get 方法是 PHP 语言或 URL 的一部分吗
【发布时间】:2019-02-03 10:12:47
【问题描述】:

要了解 post 和 get 方法,我应该买一本关于 URL 或 PHP 的书吗?

【问题讨论】:

    标签: php curl post get php-curl


    【解决方案1】:

    GET/POST 是 HTTP 请求的类型,与特定语言无关, GET 数据将存储在请求的标头中。 POST 数据将存储在请求的正文中。 下面的示例使用 html/php 演示了这一点:

    HTML 文件 yourfile.html

    <form action="yourfile.php" method="post">
      <input type="text" name="username/>
      <input type="submit"/>
    </form>
    

    PHP 文件 yourfile.php

    <?php 
     echo $_POST['username']; 
    ?>
    

    【讨论】:

      猜你喜欢
      • 2016-11-13
      • 1970-01-01
      • 2020-05-04
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-06-13
      相关资源
      最近更新 更多