12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- use PhpMyAdmin\Url;
- if (! defined('PHPMYADMIN')) {
- exit;
- }
- PhpMyAdmin\Util::checkParameters(array('db', 'table'));
- $db_is_system_schema = $GLOBALS['dbi']->isSystemSchema($db);
- $url_query = Url::getCommon(array('db' => $db, 'table' => $table));
- $url_params = array();
- $url_params['db'] = $db;
- $url_params['table'] = $table;
- $err_url_0 = PhpMyAdmin\Util::getScriptNameForOption(
- $GLOBALS['cfg']['DefaultTabDatabase'], 'database'
- )
- . Url::getCommon(array('db' => $db));
- $err_url = PhpMyAdmin\Util::getScriptNameForOption(
- $GLOBALS['cfg']['DefaultTabTable'], 'table'
- )
- . Url::getCommon($url_params);
- if (basename($_SERVER['PHP_SELF']) != 'tbl_export.php') {
- require_once './libraries/db_table_exists.inc.php';
- }
|