3 // vim: expandtab sw=4 ts=4 sts=4:
5 // this should be recoded as functions, to avoid messing with global
9 * Gets table informations
11 // The 'show table' statement works correct since 3.23.03
12 if (PMA_MYSQL_INT_VERSION
>= 32303) {
13 $local_query = 'SHOW TABLE STATUS LIKE \'' . PMA_sqlAddslashes($table, TRUE) . '\'';
14 $table_info_result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url_0);
15 $showtable = PMA_mysql_fetch_array($table_info_result);
16 $tbl_type = strtoupper($showtable['Type']);
17 $table_info_num_rows = (isset($showtable['Rows']) ?
$showtable['Rows'] : 0);
18 $show_comment = (isset($showtable['Comment']) ?
$showtable['Comment'] : '');
19 $auto_increment = (isset($showtable['Auto_increment']) ?
$showtable['Auto_increment'] : '');
21 $tmp = explode(' ', $showtable['Create_options']);
22 $tmp_cnt = count($tmp);
23 for ($i = 0; $i < $tmp_cnt; $i++
) {
24 $tmp1 = explode('=', $tmp[$i]);
25 if (isset($tmp1[1])) {
32 $local_query = 'SELECT COUNT(*) AS count FROM ' . PMA_backquote($table);
33 $table_info_result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url_0);
35 $table_info_num_rows = PMA_mysql_result($table_info_result, 0, 'count');
38 mysql_free_result($table_info_result);
42 * Displays top menu links
44 echo '<!-- top menu -->' . "\n";
45 require('./tbl_properties_links.php3');
49 * Displays table comment
51 if (!empty($show_comment)) {
53 <!-- Table comment
-->
55 <?php
echo htmlspecialchars($show_comment) . "\n"; ?
>