dskyx46424 2013-10-29 08:41
浏览 37
已采纳

如何在会话中存储整个$ _POST变量

I have dropdown select that when I click the submit button it's displays the records base on the value of dropdown. It's works fine, but when I refresh the app_list2.php it's displays nothing. I want to stay the records that displays in app_list2.php. How I can store all the $_POST value in session ?

    <?php
    $mysqli = new mysqli("localhost", "root", "", "app");
    if(isset($_POST['submit'])){
    $drop = $_POST['drop_1'];
    $tier_two = $_POST['tier_two'];

    $where = "WHERE app_cn='$drop' AND app_plan_no='$tier_two'";

$result1 = $mysqli->query("
    SELECT *, SUM(unit_cost*quantity) AS total_amount, SUM(unit_cost*1st_quarter) AS 1st_quarter_total, SUM(unit_cost*2nd_quarter) AS 2nd_quarter_total, SUM(unit_cost*3rd_quarter) AS 3rd_quarter_total,
    SUM(unit_cost*4th_quarter) AS 4th_quarter_total, SUM((quantity)-(1st_q_qty_del+2nd_q_qty_del+3rd_q_qty_del+4th_q_qty_del)) AS balance
    FROM app 
    $where 
    GROUP BY counter ORDER BY counter
");
?>

<?php
echo'<table id="tfhover" cellspacing="0" class="tablesorter" style="text-transform:uppercase;">
        <thead>
            <tr>
        <th>Item</th>
        <th>Description</th>
        <th>Fund Source</th>
        <th>Unit</th>
        <th>Unit Cost</th>
    </tr>
        </thead>';
        echo'<tbody>';
$i=1;
while($row = $result1->fetch_assoc()){
if($row['app_cn'] != '')
 {
 echo'<tr>
    <td>'.$row['item_name'].'</td>
        <td>'.$row['item_description'].'</td>
    <td>'.$row['fund_source'].'</td>
        <td>'.$row['unit'].'</td>
        <td>'.number_format($row['unit_cost'], 2, '.', ',').'</td>
       </tr>';
    }
        }
    echo "</tbody></table>";
}
?>
  • 写回答

1条回答 默认 最新

  • douneiben2240 2013-10-29 09:20
    关注

    try out this code

    <?php
    
        ob_start();
        session_start();
            $mysqli = new mysqli("localhost", "root", "", "app");
    
    
    
        if(isset($_POST['submit'])){
    
        //unset the session value 
        $_SESSION['content'] = '';
    
        $drop = $_POST['drop_1'];
        $tier_two = $_POST['tier_two'];
    
        $where = "WHERE app_cn='$drop' AND app_plan_no='$tier_two'";
    
    $result1 = $mysqli->query("
        SELECT *, SUM(unit_cost*quantity) AS total_amount, SUM(unit_cost*1st_quarter) AS 1st_quarter_total, SUM(unit_cost*2nd_quarter) AS 2nd_quarter_total, SUM(unit_cost*3rd_quarter) AS 3rd_quarter_total,
        SUM(unit_cost*4th_quarter) AS 4th_quarter_total, SUM((quantity)-(1st_q_qty_del+2nd_q_qty_del+3rd_q_qty_del+4th_q_qty_del)) AS balance
        FROM app 
        $where 
        GROUP BY counter ORDER BY counter
    ");
    ?>
    
    <?php
    echo'<table id="tfhover" cellspacing="0" class="tablesorter" style="text-transform:uppercase;">
            <thead>
                <tr>
            <th>Item</th>
            <th>Description</th>
            <th>Fund Source</th>
            <th>Unit</th>
            <th>Unit Cost</th>
        </tr>
            </thead>';
            echo'<tbody>';
    $i=1;
    while($row = $result1->fetch_assoc()){
    if($row['app_cn'] != '')
     {
     echo'<tr>
        <td>'.$row['item_name'].'</td>
            <td>'.$row['item_description'].'</td>
        <td>'.$row['fund_source'].'</td>
            <td>'.$row['unit'].'</td>
            <td>'.number_format($row['unit_cost'], 2, '.', ',').'</td>
           </tr>';
        }
            }
        echo "</tbody></table>";
    
        $sPageContent = ob_get_clean();
        $_SESSION['content']    =   $sPageContent;
    
    }else{
    
        if (isset($_SESSION['content'])){
            echo $_SESSION['content'];
        }
    
    
    }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计