'PHP'); } function dumpHeaders() { if ($_POST['format'] == 'php') { header('Content-Type: text/plain; charset=utf-8'); return 'php'; } } function dumpTable($table, $style, $is_view = 0) { if ($_POST['format'] == 'php') { $this->output[$table] = array(); return true; } } function dumpData($table, $style, $query) { if ($_POST['format'] == 'php') { $result = Adminer\connection()->query($query, 1); if ($result) { while ($row = $result->fetch_assoc()) { $this->output[$table][] = $row; } } return true; } } function dumpFooter() { if ($_POST['format'] == 'php') { echo "output); echo ";\n"; } } }