gpt4 book ai didi

php - PDO FetchAll从mysql回显表中的数据

转载 作者:行者123 更新时间:2023-11-29 22:12:35 26 4
gpt4 key购买 nike

使用 PHP 开发 Highscore 系统。为了从 MySQL 数据库获取数据,我使用了这段代码。

<?php
$sql_query = "SELECT id,name, exp FROM user ORDER by exp DESC";
try {
$conn = new PDO('mysql:host=localhost;dbname=game', 'root', 'pass');
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$rst = $conn->query($sql_query);
$users= $rst->fetchAll(PDO::FETCH_OBJ);
echo '' . json_encode($users) . '';
}
catch(PDOException $e) {
echo '{"error":{"text":'. $e->getMessage() .'}}';
}
?>

该代码的输出如下所示:

[{"id":"1","name":"Player","exp":"22060"}

我需要单独回显标签中的数据。例如。

<td><?php echo $users->name ?></td>
<td><?php echo $users->exp ?></td>

最佳答案

这应该可以解决问题:

<?php
$sql_query = "SELECT id,name, exp FROM user ORDER by exp DESC";
try {
$conn = new PDO('mysql:host=localhost;dbname=game', 'root', 'pass');
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$rst = $conn->query($sql_query);
$users= $rst->fetchAll(PDO::FETCH_OBJ);

foreach($users as $user) {
echo "<td>{$user->name}</td>";
echo "<td>{$user->exp}</td>";
}
}
catch(PDOException $e) {
echo '{"error":{"text":'. $e->getMessage() .'}}';
}
?>

关于php - PDO FetchAll从mysql回显表中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31481371/

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