= 32303) { $local_query = 'SHOW TABLE STATUS LIKE \'' . PMA_sqlAddslashes($table, TRUE) . '\''; $result = mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url_0); $showtable = mysql_fetch_array($result); $tbl_type = strtoupper($showtable['Type']); $num_rows = (isset($showtable['Rows']) ? $showtable['Rows'] : 0); $show_comment = (isset($showtable['Comment']) ? $showtable['Comment'] : ''); } else { $local_query = 'SELECT COUNT(*) AS count FROM ' . PMA_backquote($table); $result = mysql_query($local_query) or PMA_mysqlDie('', $local_query, '', $err_url_0); $showtable = array(); $num_rows = mysql_result($result, 0, 'count'); $show_comment = ''; } mysql_free_result($result); echo '' . "\n"; require('./tbl_properties_links.php3'); if (!empty($show_comment)) { ?>