3 // vim: expandtab sw=4 ts=4 sts=4:
5 if (isset($_REQUEST['GLOBALS']) ||
isset($_FILES['GLOBALS'])) {
6 die("GLOBALS overwrite attempt");
10 * Sends the beginning of the html page then returns to the calling script
12 // Defines the cell alignment values depending on text direction
13 if ($GLOBALS['text_dir'] == 'ltr') {
14 $GLOBALS['cell_align_left'] = 'left';
15 $GLOBALS['cell_align_right'] = 'right';
17 $GLOBALS['cell_align_left'] = 'right';
18 $GLOBALS['cell_align_right'] = 'left';
20 // removes the bug with the horizontal scrollbar in IE (it's allways shown, if need it or not)
21 // xml declaration moves IE into quirks mode, making much trouble with CSS
22 /* echo '<?xml version="1.0" encoding="' . $GLOBALS['charset'] . '"?>'; */
25 <!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
26 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
27 <html xmlns
="http://www.w3.org/1999/xhtml" xml
:lang
="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" lang
="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" dir
="<?php echo $GLOBALS['text_dir']; ?>">
29 <link rel
="icon" href
="./favicon.ico" type
="image/x-icon" />
30 <link rel
="shortcut icon" href
="./favicon.ico" type
="image/x-icon" />
32 if (!empty($page_title)) {
33 echo htmlspecialchars($page_title);
38 <meta http
-equiv
="Content-Type" content
="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
39 <link rel
="stylesheet" type
="text/css" href
="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './'; ?>css/phpmyadmin.css.php?<?php echo PMA_generate_common_url(); ?>&js_frame=<?php echo isset($print_view) ? 'print' : 'right'; ?>&nocache=<?php echo $_SESSION['PMA_Config']->getMtime(); ?>" />
40 <link rel
="stylesheet" type
="text/css" href
="<?php echo defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './'; ?>css/print.css?<?php echo PMA_generate_common_url(); ?>" media
="print" />