i get two or more duplicate row, i check if exist with :
$Select = mysql_query("SELECT x3 FROM USER WHERE x1='$x2' AND x2='$x2'");
$Count = mysql_num_rows($Select);
if($Count == 1){
die("Error");
}
i get x1 and x2 with $_POST['x1']....
I tried to do a test with the link and do not duplicate things (with $_GET[])
But when i execute this in mobile app i get duplicate or more row!! why? i think error is in php....