Translated using Weblate (Catalan)
[phpmyadmin.git] / tbl_sql.php
blobd6e50b9f7991543180756d01b815e523a26bbb67
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Table SQL executor
6 * @package PhpMyAdmin
7 */
8 use PhpMyAdmin\Config\PageSettings;
9 use PhpMyAdmin\Response;
10 use PhpMyAdmin\SqlQueryForm;
12 /**
15 require_once 'libraries/common.inc.php';
17 PageSettings::showGroup('Sql');
19 /**
20 * Runs common work
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 .= '&amp;goto=tbl_sql.php&amp;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 /**
39 * Query box, bookmark, insert data from textfile
41 $response->addHTML(
42 SqlQueryForm::getHtml(
43 true, false,
44 isset($_REQUEST['delimiter'])
45 ? htmlspecialchars($_REQUEST['delimiter'])
46 : ';'