~ubuntu-branches/ubuntu/hardy/phpmyadmin/hardy

« back to all changes in this revision

Viewing changes to db_qbe.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst, Thijs Kinkhorst, Translations
  • Date: 2007-06-17 17:52:03 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20070617175203-6oa2mpmgazkhp8tl
Tags: 4:2.10.2-1

[ Thijs Kinkhorst ]
* New upstream release.
* Welcome Michal Čihař as new co-maintainer.

[ Translations ]
* Vietnamese by Clytie Siddall (Closes: #427177).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
/* $Id: db_qbe.php 9602 2006-10-25 12:25:01Z nijel $ */
 
2
/* $Id: db_qbe.php 10380 2007-05-12 09:56:36Z lem9 $ */
3
3
// vim: expandtab sw=4 ts=4 sts=4:
4
4
 
5
5
/**
100
100
 */
101
101
$tbl_result     = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', null, PMA_DBI_QUERY_STORE);
102
102
$tbl_result_cnt = PMA_DBI_num_rows($tbl_result);
 
103
if (0 == $tbl_result_cnt) {
 
104
    echo '<div class="warning">' . $strNoTablesFound . '</div>';
 
105
    require_once './libraries/footer.inc.php';
 
106
    exit;
 
107
}
 
108
 
103
109
$i              = 0;
104
110
$k              = 0;
105
111