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';
38 // Decides what query to show in SQL box.
39 $query_to_show = isset($_GET['sql_query']) ?
$_GET['sql_query'] : true;
42 * Query box, bookmark, insert data from textfile
45 SqlQueryForm
::getHtml(
46 $query_to_show, false,
47 isset($_POST['delimiter'])
48 ?
htmlspecialchars($_POST['delimiter'])