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条)

报告相同问题?

悬赏问题

  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 AT89C51控制8位八段数码管显示时钟。
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题