如果我们想向每个用户展示哪些异性用户查看了他们的个人资料,那么在MySQL中跟踪所有这些观点的最佳方法是什么?
每个用户都有一个来自主userid
表的唯一Users
,该表还存储了他们的sex
。
我们希望向每个用户显示按照最近视图到最早视图的顺序查看的用户。
如果他们碰巧查看自己的个人资料,我们显然不想向用户展示。
我们想要向男性展示只看到他们的女孩,女孩只看那些看过他们的女孩。
ProfileViews
的表来做到这一点? 答案 0 :(得分:3)
这是我将为您制作的一个简单示例,希望这会有所帮助。
<强> SQL:强>
CREATE TABLE user
(
user_id BIGINT NOT NULL AUTO_INCREMENT,
sex VARCHAR(10) NOT NULL,
CONSTRAINT PK_USER PRIMARY KEY (user_id)
) ENGINE=INNODB;
CREATE TABLE profileview
(
profileview_id BIGINT NOT NULL AUTO_INCREMENT,
user_id BIGINT NOT NULL,
visitor_user_id BIGINT NOT NULL,
date_time DATETIME NOT NULL,
CONSTRAINT PK_PROFILEVIEW PRIMARY KEY (profileview_id)
) ENGINE=INNODB;
ALTER TABLE profileview
ADD FOREIGN KEY FK_PROFILEVIEW_USER(user_id)
REFERENCES user (user_id);
ALTER TABLE profileview
ADD FOREIGN KEY FK_PROFILEVIEW_VISITOR(visitor_user_id)
REFERENCES user (user_id);
<强> PHP:强>
这是用户个人资料页面的一个简单示例 - www.domain.com/profile.php?id=xxx 。 此时,您需要在用户登录站点时在会话中定义两个变量: $ _SESSION ['user_id'](int)/ $ _SESSION ['user_logged'](布尔值)
<?php
if ($_GET && isset($_GET['id']){
if(isset($_SESSION['user_id']){
$profile_user_id = $_GET['id'];
// the user that visits the profile has a session with his/her id on it.
session_start();
$visitor_user_id = $_SESSION['user_id'];
} else {
// if visitor specified an id but there is no session, redirect to login.
header("location: login.php");
}
} else {
// if no id passed redirect to index
header("location: index.php");
}
?>
<html>
<head>
<title>Your title</title>
</head>
<script src="scripts/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
//here you will store the visit with jquery.
$(document).ready(function(){
// store the values from php.
var profile_user_id = <?php echo $profile_user_id ?>;
var visitor_user_id = <?php echo $visitor_user_id ?>;
// here, the user information goes to the visit.php file.
$.post('visit.php' { profile_user_id:profile_user_id, visitor_user_id:visitor_user_id } );
});
</script>
<body>
Here print user information from a SQL select or something of the id passed in the GET.
</body>
</html>
现在,用于存储数据的 visit.php 文件:
<?php
if ($_POST && isset($_POST['profile_user_id']) && isset($_POST['visitor_user_id'])) {
session_start();
// this will end the execution of the script if there is no session from user logged
if ($_SESSION['user_logged'] != true) {
exit();
}
// everything is ok, do the process:
// functions.php contains your SQL connection, I suppose you know how to do it.
include('../cgi-bin/functions.php');
$link = dbconn();
$profile_user_id = mysql_real_escape_string($_POST['profile_user_id']);
$visitor_user_id = mysql_real_escape_string($_POST['visitor_user_id']);
// this will store the data in profileview including date and time if id's are not equal.
if($profile_user_id != $visitor_user_id){
$sql = "INSERT INTO profileview (user_id, visitor_user_id, date_time) VALUES ($profile_user_id, $visitor_user_id, NOW())";
mysql_query($sql, $link);
}
}
?>
EXTRA:如果你不知道 functions.php 做了什么,请点击这里:
<?php
function dbconn() {
if(!include_once('db.php')) {
die('Error include file.');
}
if (!$link = mysql_connect($db['hostname'],$db['username'],$db['password'])) {
die('Error connecting.');
}
if (!mysql_select_db($db['database'])) {
die('Error selecting.');
}
return $link;
}
?>
上面的文件也需要这个文件:在这里设置你的db的连接参数。
<强> db.php中强>
<?php
$db = array(
'hostname' => 'localhost',
'username' => 'root',
'password' => 'mysql',
'database' => 'mydb'
);
?>
cgi-bin
文件夹中,以便在visit.php
文件代码中看到更好的做法。现在,根据visitors.php?id=xxx
创建另一个名为select * from
的文件并执行user_id
个个人资料视图。此时您将能够:
获取user_id
信息,如果是男性(例如)......
答案 1 :(得分:1)
profileviews:
profile
userwhoviewed
timestamp
索引配置文件列。
因此,当您的用户查看该页面时,请检查它是否是个人资料所有者,获取个人资料所有者的性别,检查查看者的性别,如果不同,请使用查看器和时间戳更新表格。
查询结果时,只需选择与目标配置文件匹配的所有行,按时间戳desc排序,然后迭代以将链接构建回这些配置文件。
我通常在这些字段中使用INT数据类型(使行保持较小并加快查找速度),然后使用用户表生成这些UID作为auto_increment主键。这将保留您的性别和偏好字段,以及任何其他辅助用户数据,并且如果需要,可以更轻松地更改登录名。
但你遗漏了你的同性恋用户。最好只记录它们,让用户根据自己的喜好进行过滤。 :)
答案 2 :(得分:1)
UsersTable
UserID Sex
1 Boy
2 Girl
3 Girl
UsersViewsTable
UserID View Unixtimestamp
1 2 342143243432
1 3 142143243432
2 3 242143243432
3 1 442143243432
当您访问用户个人资料时,您将使用:
IF CurrentUserSex != UserProfileSex
INSERT INTO UsersViewsTable (UserID, View, Unixtimestamp) VALUES (CurrentUser, CurrentProfileUserID, time)
现在,您想在页面上获取此内容以查看最后一次从异性中看到过吗?
SELECT * FROM UsersViewsTable LEFT JOIN UsersTable USING (UserID) WHERE Sex != CurrentUserSex GROUP BY View ORDER BY Unixtimestamp DESC
编辑:
IF CurrentUserSex != UserProfileSex {
$Res = SELECT CurrentProfileUserID FROM UsersViewsTable WHERE UserID = CurrentUserID AND View = UserProfileID LIMIT 1
if($Res['Count'] == 1){
// Exist
UPDATE UsersViewsTable SET Unixtimestamp = time WHERE UserID = CurrentUserID AND View = UserProfileID LIMIT 1
} else {
// Doesnt exist
INSERT INTO UsersViewsTable (UserID, View, Unixtimestamp) VALUES (CurrentUser, CurrentProfileUserID, time)
}
}
答案 3 :(得分:0)
只需检查每个用户个人资料页面的n比较,其中包含访问者ID和个人资料ID。如果两个不同,则存储在访问表中,其中包含日期和时间以及您所需的信息。插入之前只需检查表格行 如果prof id,vistor id已经存在,那么更新时间只需插入数据。
感谢。