3.3.9.1 release
[phpmyadmin/madhuracj.git] / tbl_sql.php
blobf3c3aac6e32fef3b432cfcd12b20ab78466ce478
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 * @package phpMyAdmin
7 */
9 /**
12 require_once './libraries/common.inc.php';
14 /**
15 * Runs common work
17 require './libraries/tbl_common.php';
18 $url_query .= '&amp;goto=tbl_sql.php&amp;back=tbl_sql.php';
20 require_once './libraries/sql_query_form.lib.php';
22 $err_url = 'tbl_sql.php' . $err_url;
23 // After a syntax error, we return to this script
24 // with the typed query in the textarea.
25 $goto = 'tbl_sql.php';
26 $back = 'tbl_sql.php';
28 /**
29 * Get table information
31 require_once './libraries/tbl_info.inc.php';
33 /**
34 * Displays top menu links
36 require_once './libraries/tbl_links.inc.php';
38 /**
39 * Query box, bookmark, insert data from textfile
41 PMA_sqlQueryForm(true, false, isset($_REQUEST['delimiter']) ? htmlspecialchars($_REQUEST['delimiter']) : ';');
43 /**
44 * Displays the footer
46 require_once './libraries/footer.inc.php';