RFE #856503: Show numbers of rows in print view

This commit is contained in:
Garvin Hicking
2003-12-11 11:04:51 +00:00
parent 56edf51600
commit ecdbf7e581
2 changed files with 4 additions and 0 deletions

View File

@@ -59,6 +59,9 @@ if ($text_dir == 'ltr') {
<b><?php echo $strGenTime; ?>:</b> <?php echo PMA_localisedDate(); ?><br />
<b><?php echo $strGenBy; ?>:</b> phpMyAdmin <?php echo PMA_VERSION; ?><br />
<b><?php echo $strSQLQuery; ?>:</b> <?php echo htmlspecialchars($full_sql_query); ?>;
<?php if (isset($num_rows)) { ?><br />
<b><?php echo $strRows; ?>:</b> <?php echo $num_rows; ?>
<?php } ?>
</p>