1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 09:34:10 +02:00

SQLite: Display all rows of variable values

This commit is contained in:
Jakub Vrana
2025-02-26 10:46:46 +01:00
parent 8077ef41c1
commit ab025e74a3
3 changed files with 8 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ if (!$variables) {
foreach ($variables as $key => $val) {
echo "<tr>";
echo "<th><code class='jush-" . $jush . ($status ? "status" : "set") . "'>" . h($key) . "</code>";
echo "<td>" . h($val);
echo "<td>" . nl_br(h($val));
}
echo "</table>\n";
}