-2
    $sql="Select chanceNo From gm_gacha_token1 where token_code='$mytoken'";
    $result=mysql_query($sql);
    $count=mysql_num_rows($result);

言語: PHP

私が達成しようとしているのは、chanceNoの単一の値を取得したいということです..値を取得してcookie/sesisonに保存し、次のページに表示するにはどうすればよいですか??

コードの次のステップまたは次の行は何ですか??

4

2 に答える 2

1

ページ1:

session_start();

$query = mysql_query("Select chanceNo From gm_gacha_token1 where token_code='$mytoken' LIMIT 1");

if (mysql_num_rows($query) > 0){
$result = mysql_fetch_assoc($query);
$_SESSION['chanceNo'] = $result['chanceNo'];
// done, maybe header('location: page2.php'); ?
} else {
 // no result
}

ページ2:

session_start();
$chanceNo = $_SESSION['chanceNo'];
echo $chanceNo;
于 2012-10-19T07:00:02.543 に答える
-2

これを試してみてください...

   $sql="Select chanceNo From gm_gacha_token1 where token_code='$mytoken' LIMIT 1"; 
   $result = mysql_query($query) or die (mysql_error());

 while($rows = mysql_fetch_assoc($result))
    {
      echo $rows[chanceNo];
    }
于 2012-10-19T06:58:25.057 に答える