Started working on a new interface to server related pages.

This commit is contained in:
Alexander M. Turek
2002-12-08 20:41:58 +00:00
parent eb8be6bc5c
commit e1079bee2a
100 changed files with 2634 additions and 56 deletions

38
server_common.inc.php3 Normal file
View File

@@ -0,0 +1,38 @@
<?php
/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:
/**
* Gets some core libraries
*/
if (!defined('PMA_GRAB_GLOBALS_INCLUDED')) {
include('./libraries/grab_globals.lib.php3');
}
if (!defined('PMA_COMMON_LIB_INCLUDED')) {
include('./libraries/common.lib.php3');
}
/**
* Set parameters for links
*/
$url_query = 'lang=' . $lang
. '&amp;convcharset=' . $convcharset
. '&amp;server=' . $server;
/**
* Defines the urls to return to in case of error in a sql statement
*/
$err_url = 'main.php3' . $url_query;
/**
* Displays the headers
*/
require('./header.inc.php3');
/**
* Checks for superuser privileges
*/
$is_superuser = @PMA_mysql_query('USE mysql', $userlink);
?>