2 /* vim: set expandtab sw=4 ts=4 sts=4: */
8 use PhpMyAdmin\Config\PageSettings
;
9 use PhpMyAdmin\Response
;
10 use PhpMyAdmin\SqlQueryForm
;
15 require_once 'libraries/common.inc.php';
17 PageSettings
::showGroup('Sql');
22 $response = Response
::getInstance();
23 $header = $response->getHeader();
24 $scripts = $header->getScripts();
25 $scripts->addFile('makegrid.js');
26 $scripts->addFile('vendor/jquery/jquery.uitablefilter.js');
27 $scripts->addFile('sql.js');
29 require 'libraries/tbl_common.inc.php';
30 $url_query .= '&goto=tbl_sql.php&back=tbl_sql.php';
32 $err_url = 'tbl_sql.php' . $err_url;
33 // After a syntax error, we return to this script
34 // with the typed query in the textarea.
35 $goto = 'tbl_sql.php';
36 $back = 'tbl_sql.php';
39 * Query box, bookmark, insert data from textfile
42 SqlQueryForm
::getHtml(
44 isset($_REQUEST['delimiter'])
45 ?
htmlspecialchars($_REQUEST['delimiter'])