gpt4 book ai didi

php - 获取 sql 返回正确的帖子

转载 作者:行者123 更新时间:2023-11-29 23:26:46 24 4
gpt4 key购买 nike

我正在尝试获取一个 SQL 查询,以按其 ID 返回我的数据库中的帖子。

我的表格如下所示:

id|img|desc|日期

现在我想根据传递的 id 返回一个帖子。我正在使用 PDO。并返回我这样做的所有帖子:

function getUser($id) {
echo $id; //i want to get the post that has this id.
}

function getProjects() {
$sql = "select * FROM projects";
try {
$db = getConnection();
$stmt = $db->query($sql);
$users = $stmt->fetchAll(PDO::FETCH_OBJ);
$db = null;
echo json_encode($users);
}
catch(PDOException $e) {
echo json_encode($e->getMessage());
}
}

最佳答案

您忘记了 WHERE 子句。

$sql = "select * FROM projects WHERE id = " . $whateveridyouwant;

关于php - 获取 sql 返回正确的帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26893824/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com