adminerevo/processlist.inc.php
jakubvrana b3fda0f503 Row in English
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@330 7c3ca157-0c34-0410-bff1-cbf682f78f5c
2007-08-11 06:19:38 +00:00

40 lines
1.1 KiB
PHP

<?php
if ($_POST && !$error) {
$killed = 0;
foreach ((array) $_POST["kill"] as $val) {
if ($mysql->query("KILL " . intval($val))) {
$killed++;
}
}
if ($killed || !$_POST["kill"]) {
redirect($SELF . "processlist=", lang('%d process(es) has been killed.', $killed));
}
$error = $mysql->error;
}
page_header(lang('Process list'));
if ($_POST) {
echo "<p class='error'>" . lang('Unable to kill process') . ": " . htmlspecialchars($error) . "</p>\n";
}
?>
<form action="" method="post">
<table border="1" cellspacing="0" cellpadding="2">
<?php
$result = $mysql->query("SHOW PROCESSLIST");
for ($i=0; $row = $result->fetch_assoc(); $i++) {
if (!$i) {
echo "<thead><tr lang='en'><th>&nbsp;</th><th>" . implode("</th><th>", array_keys($row)) . "</th></tr></thead>\n";
}
echo "<tr><td><input type='checkbox' name='kill[]' value='$row[Id]' /></td><td>" . implode("</td><td>", $row) . "</td></tr>\n";
}
$result->free();
?>
</table>
<p>
<input type="hidden" name="token" value="<?php echo $token; ?>" />
<input type="submit" value="<?php echo lang('Kill'); ?>" />
</p>
</form>