会话变量不会定期增加

时间:2013-01-02 21:14:40

标签: php jquery session session-variables session-cookies

我正在开发一款智能手机网络应用,这是一款使用jquerymobile API的问答游戏。 当用户单击作为锚标记的下一个按钮时,我切换到其他页面并递增$ _SESSION ['questionNo']值。问题是$ _SESSION ['questionNo']值从1增加到4然后再次成为$ _SESSION ['questionNo']是1.为什么它发生我不知道。这是我的代码

<?php session_start();
include("connect.php");
include("header1.php");

$attemp=$_SESSION['questionNo'];
echo $attemp;
$sql = sprintf("select * from question order by pk_id ASC limit %s,%s",$attemp,1);
$result = mysql_query($sql) or die(mysql_error());
$result2=mysql_fetch_array($result);
?>

<div data-role="page" id="group">
<div class="main">
<div id="header2" class="clearfix">
<table  border="0" width="100%" id="table">

<tr><td colspan="5"><hr></td></tr>
<tr>
<td colspan="2" id="menu_button1">
    <a href="reset.php" rel="external">Reset</a>
</td>

<td align="center">
    Score : 50%
</td>
<td>&nbsp;</td>
<td id="menu_button2">
    <a href="test.php" rel="external">Next</a>
</td>
</tr>

                             

-------------
test.php page
-------------
<!DOCTYPE html> 
<html> 
<head> 
    <title>My Page</title> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link href="css/style.css" media="handheld, screen" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" href="../css/jquery.mobile-1.0a1.min.css"/>
    <script src="jquery-1.4.3.min.js"></script>
    <script src="jquery.mobile-1.0a2.min.js"></script>
    <script src="jquery-1.8.2.min.js"></script>
</head> 
<body> 

<div data-role="page">

    <div data-role="header">
        <h1>My Title</h1>
    </div>

    <div data-role="content">   
        <?php 
            ++$_SESSION['questionNo'];
            header('Location:startGame.php');
            exit;
        ?>      
    </div><!-- /content -->

</div><!-- /page -->

</body>

任何人都可以告诉我为什么$ _SESSION ['questionNo']不会定期增加???

1 个答案:

答案 0 :(得分:3)

使用session_start():

<?php 
session_start();
++$_SESSION['questionNo'];
header('Location:startGame.php');
exit;
?>