home *** CD-ROM | disk | FTP | other *** search
- <?php
- /* $Id: queryframe.php,v 2.2 2003/11/26 22:52:24 rabus Exp $ */
- // vim: expandtab sw=4 ts=4 sts=4:
-
-
- /**
- * Gets the variables sent to this script, retains the db name that may have
- * been defined as startup option and include a core library
- */
- require_once('./libraries/grab_globals.lib.php');
- if (!empty($db)) {
- $db_start = $db;
- }
-
-
- /**
- * Gets a core script and starts output buffering work
- */
- require_once('./libraries/common.lib.php');
- require_once('./libraries/ob.lib.php');
- if ($cfg['OBGzip']) {
- $ob_mode = PMA_outBufferModeGet();
- if ($ob_mode) {
- PMA_outBufferPre($ob_mode);
- }
- }
-
- // garvin: For re-usability, moved http-headers
- // to a seperate file. It can now be included by header.inc.php,
- // queryframe.php, querywindow.php.
-
- require_once('./libraries/header_http.inc.php');
-
- /**
- * Displays the frame
- */
- // Gets the font sizes to use
- PMA_setFontSizes();
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <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; ?>">
-
- <head>
- <title>phpMyAdmin</title>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
- <base<?php if (!empty($cfg['PmaAbsoluteUri'])) echo ' href="' . $cfg['PmaAbsoluteUri'] . '"'; ?> />
- <link rel="stylesheet" type="text/css" href="./css/phpmyadmin.css.php?lang=<?php echo $lang; ?>&js_frame=left&num_dbs=0" />
- <?php
- if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
- ?>
- <script type="text/javascript" language="javascript">
- var querywindow = '';
-
- function open_querywindow(url) {
-
- if (!querywindow.closed && querywindow.location) {
- querywindow.focus();
- } else {
- querywindow=window.open(url + '&db=' + document.queryframeform.db.value + '&table=' + document.queryframeform.table.value, '','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=yes,resizable=yes,width=<?php echo $cfg['QueryWindowWidth']; ?>,height=<?php echo $cfg['QueryWindowHeight']; ?>');
- }
-
- if (!querywindow.opener) {
- querywindow.opener = self;
- }
-
- if (window.focus) {
- querywindow.focus();
- }
-
- return false;
- }
- </script>
- <?php
- }
- ?>
- </head>
-
- <body bgcolor="<?php echo $cfg['LeftBgColor']; ?>" style="margin-left: 0px; margin-top: 5px; margin-right: 0px; margin-bottom: 0px">
- <form name="queryframeform" action="queryframe.php" method="get">
- <input type="hidden" name="db" value="" />
- <input type="hidden" name="table" value="" />
- <input type="hidden" name="framename" value="queryframe" />
- </form>
-
- <?php
- $anchor = 'querywindow.php?' . PMA_generate_common_url('', '');
- if ($cfg['QueryFrameJS']) {
- $href = $anchor;
- $target = '';
- $onclick = 'onClick="javascript:open_querywindow(this.href); return false;"';
- } else {
- $href = $anchor;
- $target = 'target="phpmain' . $hash . '"';
- $onclick = '';
- }
- ?>
- <center>
- <script type="text/javascript">
- document.writeln('<a href="<?php echo $href; ?>" <?php echo $target . ' ' . $onclick; ?>><?php echo addslashes($strQueryFrame); ?></a>');
- </script>
- <noscript>
- <a href="<?php echo $href; ?>&no_js=true" <?php echo $target . ' ' . $onclick; ?> target="phpmain<?php echo $hash; ?>"><?php echo $strQueryFrame; ?></a>
- </noscript>
- </center>
-
- <form name="hashform" action="queryframe.php">
- <input type="hidden" name="hash" value="<?php echo $hash; ?>">
- </form>
- </body>
- </html>
-
- <?php
- /**
- * Close MySql connections
- */
- if (isset($dbh) && $dbh) {
- @mysql_close($dbh);
- }
- if (isset($userlink) && $userlink) {
- @mysql_close($userlink);
- }
-
-
- /**
- * Sends bufferized data
- */
- if (isset($cfg['OBGzip']) && $cfg['OBGzip']
- && isset($ob_mode) && $ob_mode) {
- PMA_outBufferPost($ob_mode);
- }
- ?>
-