home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / htdocs / phpMyAdmin / db_printview.php < prev    next >
PHP Script  |  2000-08-20  |  978b  |  48 lines

  1. <?php
  2. /* $Id: db_printview.php,v 1.1 2000/04/05 07:57:57 tobias Exp $ */
  3.  
  4. if(!isset($message))
  5. {
  6.     include("header.inc.php");
  7. }
  8. else
  9. {
  10.     show_message($message);
  11. }
  12.  
  13. $tables = mysql_list_tables($db);
  14. $num_tables = @mysql_numrows($tables);
  15.  
  16. if($num_tables == 0)
  17. {
  18.     echo $strNoTablesFound;
  19. }
  20. else
  21. {
  22.     $i = 0;
  23.     
  24.     echo "<table border=$cfgBorder>\n";
  25.     echo "<th>$strTable</th>";
  26.     echo "<th>$strRecords</th>";
  27.     while($i < $num_tables)
  28.     {
  29.         $table = mysql_tablename($tables, $i);
  30.         $query = "?server=$server&db=$db&table=$table&goto=db_details.php";
  31.         $bgcolor = $cfgBgcolorOne;
  32.         $i % 2  ? 0: $bgcolor = $cfgBgcolorTwo;
  33.         ?>
  34.            <tr bgcolor="<?php echo $bgcolor;?>">
  35.          
  36.            <td class=data><b><?php echo $table;?></b></td>
  37.            <td align="right"> <?php count_records($db,$table) ?></td>
  38.          </tr>
  39.         <?php
  40.         $i++;
  41.     }
  42.     
  43.     echo "</table>\n";
  44. }
  45.  
  46. require ("footer.inc.php");
  47. ?>
  48.