Files
phpmyadmin/tbl_properties_common.php3
Alexander M. Turek 11b4950345 For Lo�c: bug #571409
2002-08-23 10:22:54 +00:00

63 lines
1.4 KiB
PHP
Executable File

<?php
/* $Id$ */
/**
* 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');
}
if (!defined('PMA_BOOKMARK_LIB_INCLUDED')) {
include('./libraries/bookmark.lib.php3');
}
/**
* Defines the urls to return to in case of error in a sql statement
*/
$err_url_0 = $cfg['DefaultTabDatabase']
. '?lang=' . $lang
. '&amp;convcharset=' . $convcharset
. '&amp;server=' . $server
. '&amp;db=' . urlencode($db);
$err_url = $cfg['DefaultTabTable']
. '?lang=' . $lang
. '&amp;convcharset=' . $convcharset
. '&amp;server=' . $server
. '&amp;db=' . urlencode($db)
. '&amp;table=' . urlencode($table);
/**
* Ensures the database and the table exist (else move to the "parent" script)
*/
require('./libraries/db_table_exists.lib.php3');
/**
* Displays headers
*/
if (!isset($message)) {
$js_to_run = 'functions.js';
include('./header.inc.php3');
} else {
PMA_showMessage($message);
}
/**
* Set parameters for links
*/
$url_query = 'lang=' . $lang
. '&amp;convcharset=' . $convcharset
. '&amp;server=' . $server
. '&amp;db=' . urlencode($db)
. '&amp;table=' . urlencode($table)
. '&amp;goto=tbl_properties.php3';
?>