Fix for 3299241. Updated style for "disabled" topnav buttons.
[phpmyadmin/last10db.git] / tbl_sql.php
blob70fafc1d0cac3738efaafebb4747a761fe64e227
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @package phpMyAdmin
6 */
8 /**
11 require_once './libraries/common.inc.php';
13 /**
14 * Runs common work
16 $GLOBALS['js_include'][] = 'functions.js';
17 $GLOBALS['js_include'][] = 'sql.js';
19 require './libraries/tbl_common.php';
20 $url_query .= '&amp;goto=tbl_sql.php&amp;back=tbl_sql.php';
22 require_once './libraries/sql_query_form.lib.php';
24 $err_url = 'tbl_sql.php' . $err_url;
25 // After a syntax error, we return to this script
26 // with the typed query in the textarea.
27 $goto = 'tbl_sql.php';
28 $back = 'tbl_sql.php';
30 /**
31 * Get table information
33 require_once './libraries/tbl_info.inc.php';
35 /**
36 * Displays top menu links
38 require_once './libraries/tbl_links.inc.php';
40 /**
41 * Query box, bookmark, insert data from textfile
43 PMA_sqlQueryForm(true, false, isset($_REQUEST['delimiter']) ? htmlspecialchars($_REQUEST['delimiter']) : ';');
45 /**
46 * Displays the footer
48 require './libraries/footer.inc.php';