我正在尝试为添加朋友做一个小项目。 当您单击添加好友按钮时,您正在发送一个带有好友ID&的Ajax呼叫。 add.php文件的用户名(它们是每个添加按钮的id和name属性)。 (mysql结构是:1个用户表+ X 表名为用户名(列:friendid,ispending)) 在PHP文件中只有2个MySQLi查询:这是添加文件的代码:
session_start();
$friendid = $_POST['id'];
$myname = $_SESSION['username'];
$friendname = $_POST['name'];
$myid = $_SESSION['id'];
$add = new Mysqlconnect();
$add->db->query("INSERT INTO $myname VALUES($friendid, 'yes')");
$add->db->query("INSERT INTO $friendname VALUES ($myid, 'yes')");
$add->db_Close();
Mysqlconnect类是必需的,我只是不希望这里的代码太长。 这是Ajax调用:
$('.add').click(function(){
var name = $(this).attr("name");
var id = $(this).attr("id");
$.ajax({
type: "POST",
data: "&name="+name+"&id="+id,
url: 'add.php',
success: function(){
alert("success");
}
});
});
问题: 当我点击“添加朋友”时,它会提醒“成功”,但每次只有一个表更新,甚至根本没有表。 虽然有一次我点击它并且它确实有效(我没有更改代码的时间,我尝试点击每20秒)。
我该如何解决?
答案 0 :(得分:1)
如果我理解正确你似乎正在为每个用户的朋友创建一个新表(1个用户表+ X表名为用户名),这不是一个好方法,只用2个表你就会更好:用户和user_friends如下:
drop table if exists users;
create table users
(
user_id int unsigned not null auto_increment primary key,
username varbinary(32) unique not null
)
engine=innodb;
drop table if exists user_friends;
create table user_friends
(
user_id int unsigned not null,
friend_user_id int unsigned not null,
created_date datetime not null,
primary key (user_id, friend_user_id) -- note clustered composite PK (innodb only)
)
engine=innodb;
可以在此处找到完整的示例脚本:http://pastie.org/1242699
希望这有帮助。