0

我想保存cnt1tim进入 MySql 数据库。我知道 Javascript 是客户端,而 PHP 是服务器端,可用的选项是使用POST GETandCOOKIE方法。但我似乎无法在我的代码中应用。

它实际上是一个来自http://www.hscripts.com/scripts/jquery/memory-game.php的记忆游戏,玩游戏的链接是http://www.hscripts.com/scripts/jquery/memory-游戏.php 我想节省时间和移动次数。

有什么建议吗?请非常感谢。

function finish()
{

var cnt1 = $("#counting").val();

var tim=$("#timecount").val();

alert("Congratulations! You have won the game Total Move : "+cnt1+"   Time : "+tim+" seconds");

    if(confirm("Do you want to play again"))
    {
        stopCount();
        window.location.href="index.php";
    }
    else
    {
        window.location.href="leaderboard.php";
    }
}
4

1 回答 1

1

只是通过在 url 中连接将它们发送到 php 页面

if(confirm("Do you want to play again"))
    {
        stopCount();
        window.location.href="index.php?cnt1="+cnt1+"&time="+tim;
    }
    else
    {
        window.location.href="leaderboard.php?cnt1="+cnt1+"&time="+tim;
    }

并在 php 页面上访问为

$_GET['tim'];
$_GET['cnt1'];
于 2012-07-22T05:29:38.587 回答