Translation update done using Pootle.
[phpmyadmin/lorilee.git] / tbl_sql.php
blobe72dce3c9f74b564c467dfcf975bd5c368240287
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 require './libraries/tbl_common.php';
17 $url_query .= '&amp;goto=tbl_sql.php&amp;back=tbl_sql.php';
19 require_once './libraries/sql_query_form.lib.php';
21 $err_url = 'tbl_sql.php' . $err_url;
22 // After a syntax error, we return to this script
23 // with the typed query in the textarea.
24 $goto = 'tbl_sql.php';
25 $back = 'tbl_sql.php';
27 /**
28 * Get table information
30 require_once './libraries/tbl_info.inc.php';
32 /**
33 * Displays top menu links
35 require_once './libraries/tbl_links.inc.php';
37 /**
38 * Query box, bookmark, insert data from textfile
40 PMA_sqlQueryForm(true, false, isset($_REQUEST['delimiter']) ? $_REQUEST['delimiter'] : ';');
42 /**
43 * Displays the footer
45 require './libraries/footer.inc.php';