- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要完成的是用 $username 的 friend 的帖子填充新闻提要,$username 是 session 用户名。
我现在遇到的问题是,如果用户没有关注任何人或没有被任何人关注(不在关注表中),那么他们将不会在新闻提要中看到自己的帖子。
其他一切似乎都正常。
用户可以看到他们的帖子和他们关注的人。如果用户正在关注或被关注,他们可以看到他们的帖子。如果用户未关注或未被关注,则他们看不到自己的帖子。
SELECT p.*
FROM posts p
JOIN follow f
ON p.by IN (f.person_being_followed, '$username')
WHERE '{$username}' IN (f.person_following, p.by)
ORDER BY p.id DESC
这也是页面回显此信息的代码
<?
$get_posts = mysql_query("SELECT p.*
FROM posts p
JOIN follow f
ON p.by IN (f.person_being_followed, '$username') ### the ,$username' shows the logged users posts, but only if they are in the follow table ###
WHERE '{$username}' IN (f.person_following, p.by) ## the p.by shows the person who posted who logged in, but only if they are in the follow table ##
ORDER BY p.id DESC") or die(mysql_error());
while ($post_row = mysql_fetch_assoc($get_posts)) {
include './includes/newsfeed/postdetails.tpl';
include './includes/newsfeed/likeinfo.tpl';
include './includes/newsfeed/fandlname.tpl';
include './includes/newsfeed/deletepostbutton.tpl';
?>
<div style='display: inline-block;width: 560px;padding-top: 10px;padding-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,0.1);'>
<a style='float: left;' href='./profile.php?u=<?
echo $post_by;
?>'><img src='' height='50px' width='50px'/></a>
<div style='float: right; width: 500px;'>
<p style='color: rgb(59, 152, 96);font-weight: bold; font-size: 13px;
line-height: 1.38;font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;'><a style='color: rgb(59, 152, 96);
font-weight: bold;
font-size: 12px;
line-height: 1.38;text-decoration: none;' href='./profile.php?u=<?
echo $post_by;
?>'><?
echo "$fnamepost $lnamepost";
?></a></p>
<p style='color: rgb(51, 51, 51);
font-size: 13px;
line-height: 1.38;
font-family: 'lucida grande',tahoma,verdana,arial,sans-serif;'><?
echo $post_content;
?></p>
<div style='margin-top: 5px;'><a href='./scripts/like.php?pid=<?
echo $post_id;
?>' style='color:rgb(109, 180, 137);
font-size: 11px;line-height: 1.28;'><?
echo "$likedornot ($countlikes)";
?></a><a href='#' class='comment_button' style='margin-left: 10px;color:rgb(109, 180, 137);
font-size: 11px;line-height: 1.28;'><?
echo "Comment";
?></a><?
echo $deletecodevariable;
?></div>
<?
include './includes/newsfeed/comments.tpl';
?>
</div></div>
<?
}
?>
关注的mysql表
用于帖子的 mysql 表
最佳答案
替换
$get_posts = mysql_query("SELECT posts.*
FROM posts
INNER JOIN follow
ON posts.by=follow.person_being_followed
WHERE follow.person_following = $username
ORDER BY posts.id DESC");
与
$get_posts = mysql_query("SELECT posts.*
FROM posts
INNER JOIN follow
ON posts.by=follow.person_being_followed
WHERE follow.person_following = '$username'
ORDER BY posts.id DESC") or die(mysql_error());
使用 mysql_error()
进行调试以查看是否打印出任何错误消息
关于php - 从你的 friend 那里获取帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16373896/
我想知道将来对我来说最简单的方法是什么,可以使查询既有效又不那么复杂。 我应该像这样保存双向关系吗 from_id=1, to_id=2from_id=2, to_id=1 或者只创建一个唯一的行 f
假设您有一个拥有十亿用户的社交网络。在每个用户的页面上,您想要显示该用户的 friend 数、 friend 的 friend 等等,最多五度。友谊是相互的。计数不需要立即更新,但它们应该是精确的。
public void notMyFriend(Student student1) { System.out.println("Friends who are not my frien
我有如下3个表格 用户 - id integer primary_key - user_name friend - id autoincrement primary_key - user1 integ
如何从 Friends 表中获取 friend 列表以及我 friend 的 friend 数(不包括我的 friend 数) friend 表"tbl_users_friends 字段 1:id字段
我的 MySQL 表结构是这样的。 USER int id varchar username FRIEND_LIST int user_id int friend_id 对于每个 friend 关系,
假设 a,b,c 和 b,d,e 和 c,f,g 和 a,e,g,h 是 friend 。所以 获取共同好友 b/w a&b: MATCH (me:User {username:'a'}) -[r:F
我正在开发“可能的 friend ”功能。我需要显示所有不是我 friend 的 friend 的 friend ,也不要发送我或没有我的待处理请求 FRIENDSHIPS user_id frien
如果两个用户是 friend ,我在“ friend ”表中有一个条目,如下所示: table: friends ------------------------ uid1
我有一个 friend 表,用于跟踪数据库中的关系 - 我将一个查询与子查询放在一起,该子查询从 friend 的 friend 那里获取个人资料信息 我的 friend 表如下所示 - id 双向出
我想结交 friend 的 friend 的 friend 。我得到了结果,但我不确定我的查询是否正确。我正在使用嵌套选择。 我的问题是: 查询是否正确? 我如何使用 join 执行此查询? 这是我的
假设我有一个包含 friend 属性的用户对象。这个 friends 属性是其他用户对象的数组,因此是你的 friend 。找到你 friend 的 friend 但不是你 friend 的最快算法是
我想结交我的 friend 以及 friend 的 friend ,但仅限于二级 friend 我的表结构是这样的 user_id friend_user_id 1 2 1
为了了解使用 Neo4J 建立 friend 关系的优势,我在 MySQL 数据库上创建了一张用于 Persons 的表(“Persons”,20900 个数据集): id | name --
假设我有一个名为“ friend ”的表,对于每个友谊,我添加两个条目。例如,如果用户 1 和 2 是 friend ,我们将有: uid1 uid2 ---------- 1 2 2 1
在我的图形数据库中,我有 Twig 和树叶。分支可以“包含”叶子,分支可以“包含”分支。 如何使用 Gremlin 找到与给定分支直接或间接相关的所有叶子? 我让这个在 Cypher 中工作: STA
我正在尝试使用 iPhone Facebook SDK 获取我 friend 的 friend 列表。我尝试了一种使用 FQL 和 Graph API 的方法,但在这两种情况下我都遇到了错误: "Ca
我有这个 MySQL 表: 假设我以用户 1 的身份登录,正在浏览用户 2 的个人资料。由于我们是共同的 friend (1 是 2 的 friend ,2 是 1 的 friend ),我需要回应“
我想得到我 friend 的 friend 不是我 friend 的 friend 。我有一张这样的 table :用户 friend (idUser,idUserFriend) 我在想这样的事情:
我有这个 Cypher 查询... match (p:Person{userid:8432})-[r:friends_with]->(p1:Person)-[r2:friends_with]->(p2
我是一名优秀的程序员,十分优秀!