将Javascript变量保存到PHP变量? GET,POST,COOKIE

时间:2012-07-22 05:13:45

标签: php javascript database variables

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

它实际上是来自http://www.hscripts.com/scripts/jquery/memory-game.php的记忆游戏,玩游戏的链接是http://www.hscripts.com/scripts/jquery/memory-game.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";
    }
}

1 个答案:

答案 0 :(得分:1)

通过在网址中连接将它们发送到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'];