我想显示特定表格中的列,我做了它但是对我来说是全新的,我正在尝试为自己和社区建立这个网站,所以他们可以通过发布来获得积分。脚本工作正常,但我想摆脱这些东西数组和箭头,你可以在我提供的截图上看到它,我想只显示用户名和点但不是整件事。
https://gyazo.com/1cbb85765ae3fd21efa76215b7042329
这是我正在使用的代码:
<?php
$db = new SQLite3('phantombot.db');
$sql = "SELECT variable, value FROM phantombot_points";
$result = $db->query($sql);//->fetchArray(SQLITE3_ASSOC);
$row = array();
$i = 0;
while($res = $result->fetchArray(SQLITE3_ASSOC)){
if(!isset($res['variable'])) continue;
$row[$i]['variable'] = $res['variable'];
$row[$i]['value'] = $res['value'];
$i++;
}
print_r($row);
?>
答案 0 :(得分:0)
您可以为该
创建表格<table>
<tr><th>Username</th><th>Points</th></tr>
<?php foreach($row as $datum): ?>
<tr>
<td><?php echo $datum['variable'];?></td>
<td><?php echo $datum['value'];?></td>
</tr>
<?php endforeach;?>
</table>