-1

jquerymobileAPIを使用した質問回答ゲームであるスマートフォンのWebアプリを開発しています。ユーザーがアンカータグである次のボタンをクリックすると、他のページに切り替えて$_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']が定期的に増加しない理由を誰かに教えてもらえますか?

4

1 に答える 1

3

session_start() を使用します。

<?php 
session_start();
++$_SESSION['questionNo'];
header('Location:startGame.php');
exit;
?> 
于 2013-01-02T21:20:53.597 に答える