我有这样的数据库结构:
table name: tblpost
并且我希望仅按页面名称显示多个用户的所有帖子,例如show post: allpost.php
我希望得到这样的结果:
那么如何显示这样的数据呢?非常感谢你的回答。
答案 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'];
}