46 lines
1.6 KiB
PHP
Executable File
46 lines
1.6 KiB
PHP
Executable File
<?php
|
|
/* $Id$ */
|
|
|
|
include("lib.inc.php3");
|
|
|
|
?>
|
|
<html>
|
|
<head>
|
|
<title>phpMyAdmin</title>
|
|
<style type="text/css">
|
|
//<!--
|
|
body { font-family: Arial, Helvetica, sans-serif; font-size: 10pt}
|
|
th { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-weight: bold; background-color: <?php echo $cfgThBgcolor;?>;}
|
|
td { font-family: Arial, Helvetica, sans-serif; font-size: 10pt;}
|
|
form { font-family: Arial, Helvetica, sans-serif; font-size: 10pt}
|
|
h1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16pt; font-weight: bold}
|
|
A:link { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; text-decoration: none; color: blue}
|
|
A:visited { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; text-decoration: none; color: blue}
|
|
A:hover { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; text-decoration: underline; color: red}
|
|
A:link.nav { font-family: Verdana, Arial, Helvetica, sans-serif; color: #000000}
|
|
A:visited.nav { font-family: Verdana, Arial, Helvetica, sans-serif; color: #000000}
|
|
A:hover.nav { font-family: Verdana, Arial, Helvetica, sans-serif; color: red;}
|
|
.nav { font-family: Verdana, Arial, Helvetica, sans-serif; color: #000000}
|
|
|
|
//-->
|
|
</style>
|
|
<!--
|
|
<META HTTP-EQUIV="Expires" CONTENT="Fri, Jun 12 1981 08:20:00 GMT">
|
|
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
|
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
|
|
-->
|
|
</head>
|
|
|
|
<body bgcolor="#F5F5F5" text="#000000" background="images/bkg.gif">
|
|
<?php
|
|
if(isset($db))
|
|
{
|
|
echo "<h1> $strDatabase $db";
|
|
if(isset($table))
|
|
{
|
|
echo " - $strTable $table";
|
|
}
|
|
echo "</h1>";
|
|
}
|
|
?>
|