Move DefaultFunctions back to config.default.php
[phpmyadmin.git] / db_sql.php
blob26a6299d363828e016cd253bcdc849a1e624bea2
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'][] = 'makegrid.js';
18 $GLOBALS['js_include'][] = 'sql.js';
20 require './libraries/db_common.inc.php';
21 require_once './libraries/sql_query_form.lib.php';
23 // After a syntax error, we return to this script
24 // with the typed query in the textarea.
25 $goto = 'db_sql.php';
26 $back = 'db_sql.php';
28 /**
29 * Gets informations about the database and, if it is empty, move to the
30 * "db_structure.php" script where table can be created
32 require './libraries/db_info.inc.php';
33 if ($num_tables == 0 && empty($db_query_force)) {
34 $sub_part = '';
35 $is_info = true;
36 require './db_structure.php';
37 exit();
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';