i スコアをデータベースに更新する php ファイルを作成しました。例:http://domain.com/heli/test.php?id=100001181378824&score=50000
Test.php には以下のコードが含まれています
mysql_connect(localhost,$user,$password);
$id = mysql_real_escape_string($_GET['id']);
$score = mysql_real_escape_string$_GET['score']);
@mysql_select_db($database) or die( "Unable to select database");
$query = "UPDATE heli SET score = '$score' WHERE app = '$id'";
echo $query;
$result=mysql_query($query);
mysql_close();
安全な方法で Javascript を使用して、私の test.php にリクエストを取得または投稿する方法を知りたいです。今、Js の下に作成しました。
var httpwp = new XMLHttpRequest();
var urlwp = "http://domain.com/heli/test.php?id=100001181378824&score=50000";
var paramswp = "id="+ids+"&score="+scores+";
httpwp.open("GET", urlwp, true);
httpwp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
httpwp.setRequestHeader("Content-length", paramswp.length);
httpwp.setRequestHeader("Connection", "keep-alive");
httpwp.send(paramswp);
しかし、認証キーなどを使用して安全に Post または Get Request を行う方法は?