私は自分の部署用に小さなソーシャル ネットワークを構築しています。
コメントを投稿したり、友達がコメントしたりできる場所としてホームページがあります。
私は4つのテーブルを持っています...allposts_tb、friendship_tb、response_tb、signup_tb..
allposts_tbは、人々によって行われた更新と投稿を収集します。次の列があります( all_id(PK)
、name
、comment
、time
)
列 ( 、、、)としての友情_tbfriend_id(Pk)
myname
newfriend
status
列としてのresponse_tbid(Pk)
( 、name
、response
、all_id(Fk)
、time
)
列としてのsignup_tb ( signup_id
、lastname
、firstname
、email
、password
、country
)profilepicture
以下のSQLクエリを使用して、人々が作成したコメントを簡単に表示できます
SELECT allposts_tb.all_id,allposts_tb.name,allposts_tb.comment, allposts_tb.time,
friendship_tb.myname,friendship_tb.newfriend,signup_tb.firstname,
signup_tb.lastname,signup_tb.email,signup_tb.profilepicture,
allposts_tb.expand
FROM allposts_tb,friendship_tb,signup_tb
WHERE allposts_tb.name = friendship_tb.newfriend
and friendship_tb.myname=colname and
allposts_tb.name=signup_tb.email
ORDER BY allposts_tb.all_id DESC
and colname=$_SESSION['MM_Username']
コメントのすぐ下にある特定のコメントに対して人々が行った応答を表示する際に問題が発生しています...Facebookのページを複製するのと同じように.すぐに何かを言うと、コメントのすぐ下に表示されるはずです.クエリ。私があなたたちに与えたクエリの中で..たくさんのウェブページを読んだが、うまくいかない...助けてください...