⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 db_printview.php3

📁 Mysql数据库的web管理工具
💻 PHP3
字号:
<?php/* $Id: db_printview.php3,v 1.1 2000/04/05 07:57:57 tobias Exp $ */if(!isset($message)){    include("header.inc.php3");}else{    show_message($message);}$tables = mysql_list_tables($db);$num_tables = @mysql_numrows($tables);if($num_tables == 0){    echo $strNoTablesFound;}else{    $i = 0;        echo "<table border=$cfgBorder>\n";    echo "<th>$strTable</th>";    echo "<th>$strRecords</th>";    while($i < $num_tables)    {        $table = mysql_tablename($tables, $i);        $query = "?server=$server&db=$db&table=$table&goto=db_details.php3";        $bgcolor = $cfgBgcolorOne;        $i % 2  ? 0: $bgcolor = $cfgBgcolorTwo;        ?>           <tr bgcolor="<?php echo $bgcolor;?>">                    <td class=data><b><?php echo $table;?></b></td>           <td align="right">&nbsp;<?php count_records($db,$table) ?></td>         </tr>        <?php        $i++;    }        echo "</table>\n";}require ("footer.inc.php3");?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -