patch #1731280 unneeded for trunk
[phpmyadmin/crack.git] / db_structure.php
blob52b5e259beef35673b0f2c43defa35f31057606b
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 */
8 /**
11 require_once './libraries/common.inc.php';
12 require_once './libraries/Table.class.php';
14 /**
15 * Prepares the tables list if the user where not redirected to this script
16 * because there is no table in the database ($is_info is true)
18 if (empty($is_info)) {
19 // Drops/deletes/etc. multiple tables if required
20 if ((!empty($submit_mult) && isset($selected_tbl))
21 || isset($mult_btn)) {
22 $action = 'db_structure.php';
23 $err_url = 'db_structure.php?'. PMA_generate_common_url($db);
24 require './libraries/mult_submits.inc.php';
25 $message = $strSuccess;
27 require './libraries/db_common.inc.php';
28 $url_query .= '&amp;goto=db_structure.php';
30 // Gets the database structure
31 $sub_part = '_structure';
32 require './libraries/db_info.inc.php';
35 // 1. No tables
36 if ($num_tables == 0) {
37 echo '<p>' . $strNoTablesFound . '</p>' . "\n";
39 if (empty($db_is_information_schema)) {
40 require './libraries/display_create_table.lib.php';
41 } // end if (Create Table dialog)
43 /**
44 * Displays the footer
46 require_once './libraries/footer.inc.php';
47 exit;
50 // else
51 // 2. Shows table informations - staybyte - 11 June 2001
53 require_once './libraries/bookmark.lib.php';
55 if (PMA_MYSQL_INT_VERSION >= 40101) {
56 require_once './libraries/mysql_charsets.lib.php';
57 $db_collation = PMA_getDbCollation($db);
60 // Display function
61 /**
62 * void PMA_TableHeader([bool $db_is_information_schema = false])
63 * display table header (<table><thead>...</thead><tbody>)
65 * @uses PMA_showHint()
66 * @uses PMA_MYSQL_INT_VERSION
67 * @uses $GLOBALS['cfg']['PropertiesNumColumns']
68 * @uses $GLOBALS['is_show_stats']
69 * @uses $GLOBALS['strTable']
70 * @uses $GLOBALS['strAction']
71 * @uses $GLOBALS['strRecords']
72 * @uses $GLOBALS['strApproximateCount']
73 * @uses $GLOBALS['strType']
74 * @uses $GLOBALS['strCollation']
75 * @uses $GLOBALS['strSize']
76 * @uses $GLOBALS['strOverhead']
77 * @uses $GLOBALS['structure_tbl_col_cnt']
78 * @param boolean $db_is_information_schema
80 function PMA_TableHeader($db_is_information_schema = false)
82 $cnt = 0; // Let's count the columns...
84 if ($db_is_information_schema) {
85 $action_colspan = 3;
86 } else {
87 $action_colspan = 6;
90 echo '<table class="data" style="float: left;">' . "\n"
91 .'<thead>' . "\n"
92 .'<tr><td></td>' . "\n"
93 .' <th>' . $GLOBALS['strTable'] . '</th>' . "\n"
94 .' <th colspan="' . $action_colspan . '">' . "\n"
95 .' ' . $GLOBALS['strAction'] . "\n"
96 .' </th>'
97 .' <th>' . $GLOBALS['strRecords']
98 .PMA_showHint($GLOBALS['strApproximateCount']) . "\n"
99 .' </th>' . "\n";
100 if (!($GLOBALS['cfg']['PropertiesNumColumns'] > 1)) {
101 echo ' <th>' . $GLOBALS['strType'] . '</th>' . "\n";
102 $cnt++;
103 if (PMA_MYSQL_INT_VERSION >= 40100) {
104 echo ' <th>' . $GLOBALS['strCollation'] . '</th>' . "\n";
105 $cnt++;
108 if ($GLOBALS['is_show_stats']) {
109 echo ' <th>' . $GLOBALS['strSize'] . '</th>' . "\n"
110 . ' <th>' . $GLOBALS['strOverhead'] . '</th>' . "\n";
111 $cnt += 2;
113 echo '</tr>' . "\n";
114 echo '</thead>' . "\n";
115 echo '<tbody>' . "\n";
116 $GLOBALS['structure_tbl_col_cnt'] = $cnt + $action_colspan + 3;
117 } // end function PMA_TableHeader()
119 $titles = array();
120 if (true == $cfg['PropertiesIconic']) {
121 $titles['Browse'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" />';
122 $titles['NoBrowse'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" />';
123 $titles['Search'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" />';
124 $titles['NoSearch'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" />';
125 $titles['Insert'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" />';
126 $titles['NoInsert'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" />';
127 $titles['Structure'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_props.png" alt="' . $strStructure . '" title="' . $strStructure . '" />';
128 $titles['Drop'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" />';
129 $titles['NoDrop'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" />';
130 $titles['Empty'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" />';
131 $titles['NoEmpty'] = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" />';
133 if ('both' === $cfg['PropertiesIconic']) {
134 $titles['Browse'] .= $strBrowse;
135 $titles['Search'] .= $strSearch;
136 $titles['NoBrowse'] .= $strBrowse;
137 $titles['NoSearch'] .= $strSearch;
138 $titles['Insert'] .= $strInsert;
139 $titles['NoInsert'] .= $strInsert;
140 $titles['Structure'] .= $strStructure;
141 $titles['Drop'] .= $strDrop;
142 $titles['NoDrop'] .= $strDrop;
143 $titles['Empty'] .= $strEmpty;
144 $titles['NoEmpty'] .= $strEmpty;
146 } else {
147 $titles['Browse'] = $strBrowse;
148 $titles['Search'] = $strSearch;
149 $titles['NoBrowse'] = $strBrowse;
150 $titles['NoSearch'] = $strSearch;
151 $titles['Insert'] = $strInsert;
152 $titles['NoInsert'] = $strInsert;
153 $titles['Structure'] = $strStructure;
154 $titles['Drop'] = $strDrop;
155 $titles['NoDrop'] = $strDrop;
156 $titles['Empty'] = $strEmpty;
157 $titles['NoEmpty'] = $strEmpty;
161 * Displays the tables list
164 <form method="post" action="db_structure.php" name="tablesForm" id="tablesForm">
165 <?php
166 echo PMA_generate_common_hidden_inputs($db);
168 PMA_TableHeader($db_is_information_schema);
170 $i = $sum_entries = 0;
171 $sum_size = (double) 0;
172 $overhead_size = (double) 0;
173 $overhead_check = '';
174 $checked = !empty($checkall) ? ' checked="checked"' : '';
175 $num_columns = $cfg['PropertiesNumColumns'] > 1 ? ceil($num_tables / $cfg['PropertiesNumColumns']) + 1 : 0;
176 $row_count = 0;
179 $hidden_fields = array();
180 $odd_row = true;
181 $at_least_one_view_exceeds_max_count = false;
182 $sum_row_count_pre = '';
184 foreach ($tables as $keyname => $each_table) {
185 if ($each_table['TABLE_ROWS'] === null || $each_table['TABLE_ROWS'] < $GLOBALS['cfg']['MaxExactCount']) {
186 $each_table['TABLE_ROWS'] = PMA_Table::countRecords($db,
187 $each_table['TABLE_NAME'], $return = true, $force_exact = true);
190 $table_encoded = urlencode($each_table['TABLE_NAME']);
191 // MySQL < 5.0.13 returns "view", >= 5.0.13 returns "VIEW"
192 $table_is_view = ($each_table['TABLE_TYPE'] === 'VIEW'
193 || $each_table['TABLE_TYPE'] === 'SYSTEM VIEW');
195 $alias = (!empty($tooltip_aliasname) && isset($tooltip_aliasname[$each_table['TABLE_NAME']]))
196 ? str_replace(' ', '&nbsp;', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
197 : str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']));
198 $truename = (!empty($tooltip_truename) && isset($tooltip_truename[$each_table['TABLE_NAME']]))
199 ? str_replace(' ', '&nbsp;', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
200 : str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME']));
202 // Sets parameters for links
203 $tbl_url_query = $url_query . '&amp;table=' . $table_encoded;
204 $i++;
206 $row_count++;
207 if ($table_is_view) {
208 $hidden_fields[] = '<input type="hidden" name="views[]" value="' . $table_encoded . '" />';
211 if ($each_table['TABLE_ROWS'] > 0) {
212 $browse_table = '<a href="sql.php?' . $tbl_url_query . '&amp;pos=0">' . $titles['Browse'] . '</a>';
213 $search_table = '<a href="tbl_select.php?' . $tbl_url_query . '">' . $titles['Search'] . '</a>';
214 } else {
215 $browse_table = $titles['NoBrowse'];
216 $search_table = $titles['NoSearch'];
219 if (! $db_is_information_schema) {
220 if (! empty($each_table['TABLE_ROWS'])) {
221 $empty_table = '<a href="sql.php?' . $tbl_url_query
222 . '&amp;sql_query=';
223 if (PMA_MYSQL_INT_VERSION >= 40000) {
224 $empty_table .= urlencode('TRUNCATE ' . PMA_backquote($each_table['TABLE_NAME']))
225 . '&amp;zero_rows='
226 . urlencode(sprintf($strTableHasBeenEmptied, htmlspecialchars($each_table['TABLE_NAME'])))
227 . '" onclick="return confirmLink(this, \'TRUNCATE ';
228 } else {
229 $empty_table .= urlencode('DELETE FROM ' . PMA_backquote($each_table['TABLE_NAME']))
230 . '&amp;zero_rows='
231 . urlencode(sprintf($strTableHasBeenEmptied, htmlspecialchars($each_table['TABLE_NAME'])))
232 . '" onclick="return confirmLink(this, \'DELETE FROM ';
234 $empty_table .= PMA_jsFormat($each_table['TABLE_NAME']) . '\')">' . $titles['Empty'] . '</a>';
235 } else {
236 $empty_table = $titles['NoEmpty'];
238 $drop_query = 'DROP '
239 . ($table_is_view ? 'VIEW' : 'TABLE')
240 . ' ' . PMA_backquote($each_table['TABLE_NAME']);
241 $drop_message = sprintf(
242 $table_is_view ? $strViewHasBeenDropped : $strTableHasBeenDropped,
243 str_replace(' ', '&nbsp;', htmlspecialchars($each_table['TABLE_NAME'])));
246 // loic1: Patch from Joshua Nye <josh at boxcarmedia.com> to get valid
247 // statistics whatever is the table type
249 if (isset($each_table['TABLE_ROWS'])) {
250 // MyISAM, ISAM or Heap table: Row count, data size and index size
251 // is accurate.
252 if (preg_match('@^(MyISAM|ISAM|HEAP|MEMORY)$@', $each_table['ENGINE'])) {
253 if ($is_show_stats) {
254 $tblsize = doubleval($each_table['Data_length']) + doubleval($each_table['Index_length']);
255 $sum_size += $tblsize;
256 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);
257 if (isset($each_table['Data_free']) && $each_table['Data_free'] > 0) {
258 list($formatted_overhead, $overhead_unit) = PMA_formatByteDown($each_table['Data_free'], 3, ($each_table['Data_free'] > 0) ? 1 : 0);
259 $overhead_size += $each_table['Data_free'];
262 $sum_entries += $each_table['TABLE_ROWS'];
263 } elseif ($each_table['ENGINE'] == 'InnoDB') {
264 // InnoDB table: Row count is not accurate but data and index
265 // sizes are.
266 if ($is_show_stats) {
267 $tblsize = $each_table['Data_length'] + $each_table['Index_length'];
268 $sum_size += $tblsize;
269 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);
271 //$display_rows = ' - ';
272 $sum_entries += $each_table['TABLE_ROWS'];
273 } elseif (preg_match('@^(MRG_MyISAM|BerkeleyDB)$@', $each_table['ENGINE'])) {
274 // Merge or BerkleyDB table: Only row count is accurate.
275 if ($is_show_stats) {
276 $formatted_size = ' - ';
277 $unit = '';
279 $sum_entries += $each_table['TABLE_ROWS'];
280 } else {
281 // Unknown table type.
282 if ($is_show_stats) {
283 $formatted_size = 'unknown';
284 $unit = '';
288 if (PMA_MYSQL_INT_VERSION >= 40100) {
289 if (isset($each_table['Collation'])) {
290 $collation = '<dfn title="'
291 . PMA_getCollationDescr($each_table['Collation']) . '">'
292 . $each_table['Collation'] . '</dfn>';
293 } else {
294 $collation = '---';
298 if ($is_show_stats) {
299 if (isset($formatted_overhead)) {
300 $overhead = '<a href="tbl_structure.php?'
301 . $tbl_url_query . '#showusage">' . $formatted_overhead
302 . ' ' . $overhead_unit . '</a>' . "\n";
303 unset($formatted_overhead);
304 $overhead_check .=
305 "document.getElementById('checkbox_tbl_$i').checked = true;";
306 } else {
307 $overhead = '-';
309 } // end if
310 } // end if (isset($each_table['TABLE_ROWS'])
312 if ($num_columns > 0 && $num_tables > $num_columns
313 && (($row_count % $num_columns) == 0)) {
314 $row_count = 1;
315 $odd_row = true;
317 </tr>
318 </tbody>
319 </table>
320 <?php
321 PMA_TableHeader();
324 <tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
325 <td align="center">
326 <input type="checkbox" name="selected_tbl[]"
327 value="<?php echo $table_encoded; ?>"
328 id="checkbox_tbl_<?php echo $i; ?>"<?php echo $checked; ?> /></td>
329 <th><label for="checkbox_tbl_<?php echo $i; ?>"
330 title="<?php echo $alias; ?>"><?php echo $truename; ?></label>
331 </th>
332 <td align="center"><?php echo $browse_table; ?></td>
333 <td align="center">
334 <a href="tbl_structure.php?<?php echo $tbl_url_query; ?>">
335 <?php echo $titles['Structure']; ?></a></td>
336 <td align="center"><?php echo $search_table; ?></td>
337 <?php if (! $db_is_information_schema) { ?>
338 <td align="center">
339 <a href="tbl_change.php?<?php echo $tbl_url_query; ?>">
340 <?php echo $titles['Insert']; ?></a></td>
341 <td align="center"><?php echo $empty_table; ?></td>
342 <td align="center">
343 <a href="sql.php?<?php echo $tbl_url_query;
344 ?>&amp;reload=1&amp;purge=1&amp;sql_query=<?php
345 echo urlencode($drop_query); ?>&amp;zero_rows=<?php
346 echo urlencode($drop_message); ?>"
347 onclick="return confirmLink(this, '<?php echo PMA_jsFormat($drop_query, false); ?>')">
348 <?php echo $titles['Drop']; ?></a></td>
349 <?php } // end if (! $db_is_information_schema)
351 // there is a null value in the ENGINE
352 // - when the table needs to be repaired, or
353 // - when it's a view
354 // so ensure that we'll display "in use" below for a table
355 // that needs to be repaired
357 if (isset($each_table['TABLE_ROWS']) && ($each_table['ENGINE'] != null || $table_is_view)) {
358 if ($table_is_view && $each_table['TABLE_ROWS'] >= $cfg['MaxExactCountViews']) {
359 $at_least_one_view_exceeds_max_count = true;
360 $row_count_pre = '~';
361 $sum_row_count_pre = '~';
362 $show_superscript = '<sup>1</sup>';
363 } elseif($each_table['ENGINE'] == 'InnoDB') {
364 // InnoDB table: Row count is not accurate
365 $row_count_pre = '~';
366 $sum_row_count_pre = '~';
367 $show_superscript = '';
368 } else {
369 $row_count_pre = '';
370 $show_superscript = '';
373 <td class="value"><?php echo $row_count_pre . PMA_formatNumber($each_table['TABLE_ROWS'], 0) . $show_superscript; ?></td>
374 <?php if (!($cfg['PropertiesNumColumns'] > 1)) { ?>
375 <td nowrap="nowrap"><?php echo ($table_is_view ? $strView : $each_table['ENGINE']); ?></td>
376 <?php if (isset($collation)) { ?>
377 <td nowrap="nowrap"><?php echo $collation ?></td>
378 <?php } ?>
379 <?php } ?>
381 <?php if ($is_show_stats) { ?>
382 <td class="value"><a
383 href="tbl_structure.php?<?php echo $tbl_url_query; ?>#showusage"
384 ><?php echo $formatted_size . ' ' . $unit; ?></a></td>
385 <td class="value"><?php echo $overhead; ?></td>
386 <?php } // end if ?>
387 <?php } elseif ($table_is_view) { ?>
388 <td class="value">-</td>
389 <td><?php echo $strView; ?></td>
390 <td>---</td>
391 <?php if ($is_show_stats) { ?>
392 <td class="value">-</td>
393 <td class="value">-</td>
394 <?php } ?>
395 <?php } else { ?>
396 <td colspan="<?php echo ($structure_tbl_col_cnt - ($db_is_information_schema ? 5 : 8)) ?>"
397 align="center">
398 <?php echo $strInUse; ?></td>
399 <?php } // end if (isset($each_table['TABLE_ROWS'])) else ?>
400 </tr>
401 <?php
402 } // end foreach
404 // Show Summary
405 if ($is_show_stats) {
406 list($sum_formatted, $unit) = PMA_formatByteDown($sum_size, 3, 1);
407 list($overhead_formatted, $overhead_unit) =
408 PMA_formatByteDown($overhead_size, 3, 1);
411 </tbody>
412 <tbody>
413 <tr><td></td>
414 <th align="center" nowrap="nowrap">
415 <?php echo sprintf($strTables, PMA_formatNumber($num_tables, 0)); ?>
416 </th>
417 <th colspan="<?php echo ($db_is_information_schema ? 3 : 6) ?>" align="center">
418 <?php echo $strSum; ?></th>
419 <th class="value"><?php echo $sum_row_count_pre . PMA_formatNumber($sum_entries, 0); ?></th>
420 <?php
421 if (!($cfg['PropertiesNumColumns'] > 1)) {
422 $default_engine = PMA_DBI_get_default_engine();
423 echo ' <th align="center">' . "\n"
424 . ' <dfn title="'
425 . sprintf($strDefaultEngine, $default_engine) . '">' .$default_engine . '</dfn></th>' . "\n";
426 // Have to account for old MySQL with no collation (bug 1554885)
427 if (PMA_MYSQL_INT_VERSION >= 40100) {
428 // we got a case where $db_collation was empty
429 echo ' <th align="center">' . "\n";
430 if (! empty($db_collation)) {
431 echo ' <dfn title="'
432 . PMA_getCollationDescr($db_collation) . ' (' . $strDefault . ')">' . $db_collation
433 . '</dfn>';
435 echo '</th>';
439 if ($is_show_stats) {
441 <th class="value"><?php echo $sum_formatted . ' ' . $unit; ?></th>
442 <th class="value"><?php echo $overhead_formatted . ' ' . $overhead_unit; ?></th>
443 <?php
446 </tr>
447 </tbody>
448 </table>
450 <div class="clearfloat">
451 <?php
452 // Check all tables url
453 $checkall_url = 'db_structure.php?' . PMA_generate_common_url($db);
455 <img class="selectallarrow" src="<?php echo $pmaThemeImage .'arrow_'.$text_dir.'.png'; ?>"
456 width="38" height="22" alt="<?php echo $strWithChecked; ?>" />
457 <a href="<?php echo $checkall_url; ?>&amp;checkall=1"
458 onclick="if (markAllRows('tablesForm')) return false;">
459 <?php echo $strCheckAll; ?></a>
461 <a href="<?php echo $checkall_url; ?>"
462 onclick="if (unMarkAllRows('tablesForm')) return false;">
463 <?php echo $strUncheckAll; ?></a>
464 <?php if ($overhead_check != '') { ?>
466 <a href="#" onclick="unMarkAllRows('tablesForm');
467 <?php echo $overhead_check; ?> return false;">
468 <?php echo $strCheckOverhead; ?></a>
469 <?php } ?>
471 <select name="submit_mult" onchange="this.form.submit();" style="margin: 0 3em 0 3em;">
472 <?php
473 echo ' <option value="' . $strWithChecked . '" selected="selected">'
474 . $strWithChecked . '</option>' . "\n";
475 echo ' <option value="' . $strEmpty . '" >'
476 . $strEmpty . '</option>' . "\n";
477 echo ' <option value="' . $strDrop . '" >'
478 . $strDrop . '</option>' . "\n";
479 echo ' <option value="' . $strPrintView . '" >'
480 . $strPrintView . '</option>' . "\n";
481 echo ' <option value="' . $strCheckTable . '" >'
482 . $strCheckTable . '</option>' . "\n";
483 echo ' <option value="' . $strOptimizeTable . '" >'
484 . $strOptimizeTable . '</option>' . "\n";
485 echo ' <option value="' . $strRepairTable . '" >'
486 . $strRepairTable . '</option>' . "\n";
487 echo ' <option value="' . $strAnalyzeTable . '" >'
488 . $strAnalyzeTable . '</option>' . "\n";
490 </select>
491 <script type="text/javascript">
492 <!--
493 // Fake js to allow the use of the <noscript> tag
494 //-->
495 </script>
496 <noscript>
497 <input type="submit" value="<?php echo $strGo; ?>" />
498 </noscript>
499 <?php echo implode("\n", $hidden_fields) . "\n"; ?>
500 </div>
501 </form>
502 <?php
503 // Notice about row count for views
505 if ($at_least_one_view_exceeds_max_count && !$db_is_information_schema) {
506 echo '<div class="notice">' . "\n";
507 echo '<sup>1</sup>' . PMA_sanitize(sprintf($strViewMaxExactCount, PMA_formatNumber($cfg['MaxExactCountViews'], 0), '[a@./Documentation.html#cfg_MaxExactCountViews@_blank]', '[/a]')) . "\n";
508 echo '</div>' . "\n";
511 <hr />
513 <?php
514 // Routines
515 require './libraries/db_routines.inc.php';
518 * Work on the database
519 * redesigned 2004-05-08 by mkkeck
521 /* DATABASE WORK */
522 /* Printable view of a table */
523 echo '<p>';
524 echo '<a href="db_printview.php?' . $url_query . '">';
525 if ($cfg['PropertiesIconic']) {
526 echo '<img class="icon" src="' . $pmaThemeImage
527 .'b_print.png" width="16" height="16" alt="" />';
529 echo $strPrintView . '</a> ';
531 echo '<a href="./db_datadict.php?' . $url_query . '">';
532 if ($cfg['PropertiesIconic']) {
533 echo '<img class="icon" src="' . $pmaThemeImage
534 .'b_tblanalyse.png" width="16" height="16" alt="" />';
536 echo $strDataDict . '</a>';
537 echo '</p>';
539 if (empty($db_is_information_schema)) {
540 require './libraries/display_create_table.lib.php';
541 } // end if (Create Table dialog)
544 * Displays the footer
546 require_once './libraries/footer.inc.php';