Files
phpmyadmin/server_sql.php
Michal Čihař d291827444 No need to require_once footer
It is the last thing executed anyway (ends with exit).
2010-07-26 16:20:24 +02:00

36 lines
500 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
*
* @package phpMyAdmin
*/
/**
*
*/
require_once './libraries/common.inc.php';
/**
* Does the common work
*/
require_once './libraries/server_common.inc.php';
require_once './libraries/sql_query_form.lib.php';
/**
* Displays the links
*/
require './libraries/server_links.inc.php';
/**
* Query box, bookmark, insert data from textfile
*/
PMA_sqlQueryForm();
/**
* Displays the footer
*/
require './libraries/footer.inc.php';
?>