1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00
Files
php-adminer/adminer/variables.inc.php
2025-03-18 16:00:21 +01:00

22 lines
545 B
PHP

<?php
namespace Adminer;
$status = isset($_GET["status"]);
page_header($status ? lang('Status') : lang('Variables'));
$variables = ($status ? show_status() : show_variables());
if (!$variables) {
echo "<p class='message'>" . lang('No rows.') . "\n";
} else {
echo "<table>\n";
foreach ($variables as $row) {
echo "<tr>";
$key = array_shift($row);
echo "<th><code class='jush-" . JUSH . ($status ? "status" : "set") . "'>" . h($key) . "</code>";
foreach ($row as $val) {
echo "<td>" . nl_br(h($val));
}
}
echo "</table>\n";
}