我是PHP和SQLite的新手。
是否可以将PHP中的SQLite3查询构建到表中?
我有以下代码:
$result = $db->query('SELECT unique_id, description FROM dis_enums WHERE unique_id <= 12');
while ($row = $result->fetchArray()){
print_r($row);
echo nl2br("\n");
}
返回以下内容:
Array( [0] => 1 [unique_id] => 1 [1] => Concrete [description] => Concrete )
Array( [0] => 2 [unique_id] => 2 [1] => Bridge [description] => Bridge )
等
有没有办法更改我的代码,因此它有标题(unique_id和description)以及下面的结果?
感谢。
答案 0 :(得分:0)
您可以在表格内容之前回显标题 如果你想构建一个看起来像这样的html表:
$result = $db->query('SELECT unique_id, description FROM dis_enums WHERE unique_id <= 12');
echo "<table>";
echo "<tr>";
echo "<th>unique_id</th><th>description</th>";
echo "</tr>";
while ($row = $result->fetchArray()){
echo '<tr>';
echo '<td>' . $row['unique_id'] . '</td>';
echo '<td>' . $row['description'] . '</td>';
echo '</tr>';
}
echo "</table>";
这里有一个几乎匹配的例子http://zetcode.com/db/sqlitephp/