如何在PHP和&amp ;;的一个页面中显示用户的帖子MySQL的?

时间:2017-08-06 16:27:50

标签: php mysql

我有这样的数据库结构:

enter image description here

table name: tblpost并且我希望仅按页面名称显示多个用户的所有帖子,例如show post: allpost.php

我希望得到这样的结果:

enter image description here

那么如何显示这样的数据呢?非常感谢你的回答。

1 个答案:

答案 0 :(得分:0)

假设您使用PDO。

$stmt = $db->prepare("SELECT * from tblposts where post_by=:post_by");
$stmt->bindParam(':post_by',$user);
$stmt->execute();
//Fetches the posts for the certain user you want
$posts = $stmt->fetch(PDO::FETCH_ASSOC); 

库MySQLi:

$stmt = $mysqli->prepare("SELECT * from tblposts where post_by=?");
$stmt->bind_param('s',$user);
$stmt->execute();
$res = $stmt->get_result(); 
while ($row = mysqli_fetch_assoc($res)) {
    echo $row['post_date'];
}