dou72260 2016-10-10 14:37
浏览 41
已采纳

将数据从表单存储为会话作为变量

I found an example of storing an input field from a form to session data, but can't figure out how to store a selected field from a select/option field of a form. I currently have:

<strong>Choose your model:</strong>
   <form action="" method="post">
       <select name="cars">
        <option value="camry" name="camry">Camry</option>
        <option value="corolla" name="corolla">Corolla</option>
        <option value="rav4" name="rav4">RAV4</option>
        <option value="tacoma" name="tacoma">Tacoma</option>
    </select>

    <input type="submit" name="Submit" value="Submit!" />
</form>


<?php 

// starting the session
session_start();

This is where I get confused:

if (isset($_POST['Submit'])) { 
  $_SESSION['cars'] = $_POST['cars'];
  } 
?> 

<strong><?php echo $_SESSION['cars'];?></strong>

Any help would be great. Thank you!

  • 写回答

3条回答 默认 最新

  • dongliu8542 2016-10-10 14:48
    关注

    Your Code does not contain any error and it will work fine.

    You can use the isset() while calling it over to the code and hence it avoid the errors that display up in your browser.

    Replace:

    <strong><?php echo $_SESSION['cars'];?></strong>
    

    With:

    <?php
    session_start();
    ob_start();
    error_reporting(0);// This will depreciate all errors  
    if(isset($_SESSION['cars']))
    {
    echo '<strong>'.$_SESSION['cars'].'</strong>';
    }
    else
    {
    // Handle failure over here
    }
    ?>
    

    But as you have mentioned that you have got confused at the session() am explaining about the session and the form attributes that you have used below.

    Explanation

    Will provide you with the clear explanation of what the process happens.

    One:

    if (isset($_POST['Submit'])) {}
    

    This will handle up the form submit operation. Once after the form is submitted this action will take place.

    Provided the name of the submit button should be as name="Submit" and then it will trigger up this action on submit of the form.

    Two:

    <select name="cars"></select>
    

    When you need to fetch out the data after the form is submitted you need to provide with the name for the select tag then alone you can get the data from the option that is being selected.

    Three:

    <option value="camry" name="camry">Camry</option>
    

    Option does not contain the name in the HTML and you have to delete the name which you have provide to the option tag.

    Four:

    After all this is over we are now going for the session_start() in the PHP.

    session_start — Start new or resume existing session.

    session_start() creates a session or resumes the current one based on a session identifier passed via a GET or POST request, or passed via a cookie.

    When session_start() is called or when a session auto starts, PHP will call the open and read session save handlers. These will either be a built-in save handler provided by default or by PHP extensions (such as SQLite or Memcached); or can be custom handler as defined by session_set_save_handler(). The read callback will retrieve any existing session data (stored in a special serialized format) and will be unserialized and used to automatically populate the $_SESSION superglobal when the read callback returns the saved session data back to PHP session handling.

    To use a named session, call session_name() before calling session_start().

    When session.use_trans_sid is enabled, the session_start() function will register an internal output handler for URL rewriting.

    Reference: http://php.net/manual/en/function.session-start.php

    How to Use Sessions in Your PHP Scripts

    1. Starting a Session
    2. Storing and Accessing Variables
    3. Ending a Session
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了