我想将 Java 脚本老虎机游戏集成到我的脚本中。
你可以在这里看到演示; http://odhyan.com/slot/
还有 git hub 在这里;https://github.com/odhyan/slot你可以在这里看到所有的 JS 文件。
我在用户表中创建了一个点列,人们可以用这个点玩游戏。
我认为 slot.js 中的这个 JS 函数检查用户是赢了还是输了。
function printResult() {
var res;
if(win[a.pos] === win[b.pos] && win[a.pos] === win[c.pos]) {
res = "You Win!";
} else {
res = "You Lose";
}
$('#result').html(res);
}
因此,如果用户赢得赌注,我想添加 +100 点。
我做了这个 PHP 代码 Uptading points For userid "1"。
<?php
mysql_connect ("localhost","username","password") or die (mysql_error());
mysql_select_db('slot_machine');
$pointsql = mysql_query("SELECT * FROM user WHERE userid = 1");
while ($row = mysql_fetch_array($pointsql))
{
$row['point'] +=100;
$addpoint = mysql_query("UPDATE user SET point = '{$row['point']}' WHERE userid = 1");
}
?>
那么,如果用户 Win,我如何在 JavaScript 函数中调用或执行这个 PHP 代码?