我正在尝试使用 userID
但没有结果。
这就是我在php中写的:
session_start();
$id = $_SESSION['userGameId'];
$score = $_GET["playerscore"];
stm="UPDATE users SET Score = '$score' WHERE userid = $id ";
这是c脚本:
public void insertScore(int score_var)
{
WWW wwwScore = new WWW ("http://localhost/unity/stage/objectif.php?palyerscore="+score);
Debug.Log ("sent");
}
1条答案
按热度按时间ki1q1bka1#
首先将url更改为,
你有问题吗
playerscore
以及score_var
变量。你正在分析
score_var
进入insertScore
方法,但没有在该方法中使用它。然后将stm查询更改为
这就是在php中连接的方式
然后可以运行sql查询。:)