您好亲爱的Stackoverflow用户我遇到一个问题希望你们能帮助我解决这个问题
我试图保存在数据库的推荐链接上的点击并在用户管理面板上显示..
我发现了很多问题,但没有任何帮助我......!
示例:http://example.com/ref=546215
是否可以计算引荐链接的点击次数?
我在我的脚本上使用php ..
这就是我的尝试:
<?php
include("connect.php");
if (isset($_GET['ref'])) {
mysql_query("INSERT INTO hit ('-ref-','data')");
}
?>
&#13;
答案 0 :(得分:0)
我将为您提供数据库架构和查询,以便从我的问题中理解插入它。 我正在为您提供概念和查询,我希望您可以将其转换为php程序
表命中
ref | no_of_hits
create table hit(
ref varchar(255) UNIQUE KEY,
no_of_hits int(11)
);
//first check here if ref is available
select * from hit where ref =[ref]
// if not available then insert ref with no_of hit 1
insert into Hit (ref,no_of_hits) values([ref],1)
//if available then increase the no_of_hits by 1
UPDATE hit SET no_of_hits = no_of_hits + 1 WHERE ref = [ref];
有疑问吗?