代码之家  ›  专栏  ›  技术社区  ›  Garrett Rose

会话数据如何在页面之间传递?

  •  -1
  • Garrett Rose  · 技术社区  · 6 年前

    例如,我在索引上启动一个会话。php有我的表单。在我的表单中,我有一个名称输入和一个提交按钮。我创建此代码:

    $_SESSION['name'] = $_POST['name'];
    header('Location: page.php');
    

    第页的。php I启动会话并显示消息

     <h3>Thank you <?php echo $_SESSION['name'];?>, for signing up.</h3>
    

    发布的名称数据是如何传递到页面的。php?

    1 回复  |  直到 6 年前
        1
  •  0
  •   salah-1    6 年前

    在http上下文中,会话是在页面/请求之间传递数据的一种方式,因为http是无状态的。

    页面如何知道示例中的值?因为它们存储在会话变量中,可通过请求使用。

    有关背景信息,请参见: https://www.w3schools.com/php/php_sessions.asp

    What is session and session variables?

    http://php.net/manual/en/reserved.variables.session.php

    https://en.m.wikipedia.org/wiki/Session_(computer_science)#Web_server_session_management