Another Acknowledgements page update (fix for previous commit)
[openemr.git] / phpmyadmin / tbl_sql.php
blobf27a3b9aaad773e1e186ee1c275f0c00256251e4
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
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 // The Back link after a syntax error will 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_once './libraries/footer.inc.php';