29 lines
391 B
PHP
29 lines
391 B
PHP
<?php
|
|
/* $Id$ */
|
|
// vim: expandtab sw=4 ts=4 sts=4:
|
|
|
|
|
|
/**
|
|
* Does the common work
|
|
*/
|
|
require_once './server_common.inc.php';
|
|
require_once './libraries/sql_query_form.lib.php';
|
|
|
|
|
|
/**
|
|
* Displays the links
|
|
*/
|
|
require './server_links.inc.php';
|
|
|
|
|
|
/**
|
|
* Query box, bookmark, insert data from textfile
|
|
*/
|
|
PMA_sqlQueryForm();
|
|
|
|
/**
|
|
* Displays the footer
|
|
*/
|
|
require_once './footer.inc.php';
|
|
?>
|