我想将cnt1
和tim
保存到MySql数据库中。我知道Javascript是客户端,而PHP是服务器端,可用选项是使用POST GET
和COOKIE
方法。但我似乎无法在我的代码中应用。
它实际上是来自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";
}
}
答案 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'];