duanjianao0592 2012-05-06 17:17
浏览 22
已采纳

Mysql / PHP从post.postid选择行的列中获取post.userid

I am using Dreamweaver and MAMP to create a site. I have a table called posts inside I have two columns, postid, and userid. I'm putting all the posts on a page and I want to show which user posted which post, and write that on each post respectively. For example the first post that should show up has a postid of 2 and a userid of 1. Currently it is displaying the userid of the user who is logged in on all the posts, I am using:

mysql_select_db($database_akaearthdb, $akaearthdb);
$query_PostsUserid = "SELECT userid FROM posts WHERE posts.userid ORDER BY posts.postid";
$row_PostsUserid = mysql_fetch_assoc($PostsUserid);

and

echo $row_PostsUserid['userid']

To display it. I want $row_PostsUserid['userid'] to be the userid of the person who posted it.

Let me know if you need any more information, I'm new to the language so sorry if I'm doing everything wrong, TIA.

  • 写回答

2条回答 默认 最新

  • dsfsdfsd34324 2012-05-06 17:47
    关注

    Before executing a query from any language,

    Test the query on your local database command line.

    Your query,

    "SELECT userid FROM posts WHERE posts.userid ORDER BY posts.postid"
    

    will result in a syntax error.

    EDIT:

    Do the following,

    CREATE TABLE users (
             id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
             user_name VARCHAR(255),
             age INT,
             any_detail VARCHAR(255)
           );
    
    CREATE TABLE posts (
             id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
             post TEXT,
             created_at TIMESTAMP(8),
             user_id INT,
             FOREIGN KEY (user_id) REFERENCES users(id)
           );
    

    Now,

    To display the posts,

    Array =  SELECT * FROM posts ORDER BY created_at DESC;
    

    Store the result from the above query into your languages array/variable. Im a rails developer, Im not sure about PHP's syntax.(Google it and find out!)

    After storing the results into an array,

    Display the following for each element in the array as follows,

    Post content:
    << Array.post >>
    Written about:
    << Array.created_at >> ago
    Written by:
    << SELECT user_name FROM users WHERE user_id = Array.user_id >>

    That should help or take you somewhere.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 关于无人驾驶的航向角
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了