xhtml typo
[phpmyadmin/crack.git] / index.php3
blob0edca34b115fde96610ebae3e56c99ba3ff5f48e
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
6 /**
7 * Gets core libraries and defines some variables
8 */
9 require('./libraries/grab_globals.lib.php3');
10 require('./libraries/common.lib.php3');
12 // Gets the default font sizes
13 PMA_setFontSizes();
15 // Gets the host name
16 // loic1 - 2001/25/11: use the new globals arrays defined with php 4.1+
17 if (empty($HTTP_HOST)) {
18 if (!empty($_ENV) && isset($_ENV['HTTP_HOST'])) {
19 $HTTP_HOST = $_ENV['HTTP_HOST'];
21 else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['HTTP_HOST'])) {
22 $HTTP_HOST = $HTTP_ENV_VARS['HTTP_HOST'];
24 else if (@getenv('HTTP_HOST')) {
25 $HTTP_HOST = getenv('HTTP_HOST');
27 else {
28 $HTTP_HOST = '';
33 /**
34 * Defines the frameset
36 // loic1: If left light mode -> urldecode the db name
37 if (isset($lightm_db)) {
38 $db = urldecode($lightm_db);
39 unset($lightm_db);
41 $url_query = PMA_generate_common_url(isset($db) ? $db : '');
43 header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
45 require('./libraries/relation.lib.php3');
46 $cfgRelation = PMA_getRelationsParam();
48 if ($cfg['QueryHistoryDB'] && $cfgRelation['historywork']) {
49 PMA_purgeHistory($cfg['Server']['user']);
52 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
53 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
54 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $available_languages[$lang][2]; ?>" lang="<?php echo $available_languages[$lang][2]; ?>" dir="<?php echo $text_dir; ?>">
55 <head>
56 <title>phpMyAdmin <?php echo PMA_VERSION; ?> - <?php echo $HTTP_HOST; ?></title>
57 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
58 <link rel="stylesheet" type="text/css" href="./css/phpmyadmin.css.php3?lang=<?php echo $lang; ?>&amp;js_frame=right" />
59 </head>
61 <frameset cols="<?php echo $cfg['LeftWidth']; ?>,*" rows="*">
62 <?php if ($cfg['QueryFrame']) {?>
63 <frameset rows="*, 50" framespacing="0" frameborder="0" border="0">
64 <?php } ?>
65 <frame src="left.php3?<?php echo $url_query; ?>" name="nav" frameborder="0" />
66 <?php if ($cfg['QueryFrame']) { ?>
67 <frame src="queryframe.php3?<?php echo $url_query; ?>" name="queryframe" frameborder="0" />
68 </frameset>
69 <?php } ?>
70 <frame src="<?php echo (empty($db)) ? 'main.php3' : $cfg['DefaultTabDatabase']; ?>?<?php echo $url_query; ?>" name="phpmain" frameborder="1" />
72 <noframes>
73 <body bgcolor="#FFFFFF">
74 <p><?php echo $strNoFrames; ?></p>
75 </body>
76 </noframes>
77 </frameset>
79 </html>