\n";
if ($result->num_rows > 0) {
print "name | operator | currently building | last connection | building since | logged lines | last action |
\n";
while ($row = $result -> fetch_assoc()) {
foreach ($row as $key => $value) {
if ($value=="") {
$row[$key]=" ";
}
}
print "";
print "".$row["name"]." | ";
print "".$row["operator"]." | ";
print "".$row["pkgbase"]." | ";
print "".$row["lc"]." | ";
print "".$row["bs"]." | ";
print "".$row["logged_lines"]." | ";
print "".$row["last_action"]." | ";
print "
\n";
}
}
print "\n";
?>