我在 mySQL 数据库中有一个表,我在其中放置了一个使用 php 从 android 应用程序检索到的值。现在这个值是一个 UniqueID,所以我一直在计算它,这样我就可以知道我的应用程序被访问了多少次。当一个新的 UniqueID 到达时,它以 count=1 添加到数据库中,当一个现有的 UniqueID 被检索时,它的计数简单地增加。我多次尝试了我的 php 脚本,但没有运气。我附上我的 php 脚本以供参考。
<?php
ini_set('default_charset', 'utf-8');
header('Content-Type: text/html; charset=UTF-8');
$n=$_POST['UniqueID'];
$count=1;
$Today=date("F j, Y, g:i a");
mysql_connect("localhost","root","");
mysql_select_db("farm-o-pedia");
$con="select userid from uniqueid";
$result=mysql_query($con) or die(mysql_error());
if($result=$n)
{
$upd="update uniqueid set count=count+1 where userid=$n";
$result=mysql_query($upd) or die(mysql_error());
}
else {
$que="insert into uniqueid (userid,count,date) values($n,\"$count\",\"$Today\")";
$sql=mysql_query($que) or die(mysql_error());
}
mysql_close();
?>
任何帮助将不胜感激。谢谢!