<?
require("adminconfig.php3");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>My DATA <?php echo $title; ?></title>
</head>
<body text="Black" link="#400080" vlink="#400040">
<table cellspacing="0" cellpadding="10" border="0">
<tr>
<td colspan="2" bgcolor="#ffff99">
<font size="+3" color="#000080">My DATA. Manage your datas : <?php echo $title; ?></font>
</td>
</tr>
<tr>
<td valign="top" bgcolor="#ffff99">
<!--- Début du Menu -----><hr>
<div align="center"><font size="+2" color="#000080">Tables</font></div>
<ul>
<?php
$conxmenu = new connect ;
$conxmenu->start() ;
$tables = mysql_list_tables($conxmenu->db);
$num_tables = @mysql_numrows($tables);
for ($j=0; $j<$num_tables; $j++)
{
$tablemenu = mysql_tablename($tables, $j);
if (!$hidetable[$tablemenu]) {
if (!isset($table)) {
$table = $tablemenu;
}
?>
<li><a href="displaytable.php3?table=<?php echo $tablemenu; ?>&title=<? echo $tablemenu; ?>&sql_query=<? echo urlencode("select * from ".$tablemenu) ; ?>"><? echo $tablemenu; ?></a>
<?php
}
}
?>
</ul>
<!---- Fin of the menu ----->
</td>
<td valign="top">
<!--- Start of the content of the page ---->