Hi Guys!!
I have build HTML5 Game, with construct 2 r139
I try to input and retrieve data from database with php
input data was successful, but when i try to retrieve data Using Ajax Request it was nothing, just blank!
and Ajax is never complete.
this is my score.php file value
<?php
include_once"connection.php";
$qlogin = mysql_query("select id_user, score from score_table ");
while($xx=mysql_fetch_array($qlogin)){
echo $xx['score']."|".$xx['id_user']."|";
}
mysql_close();
?>
and this is my Ajax Request code:
Request "http://localhost/mygame/myscore.php" (tag "MyScore")
Please help me.. i do need it.