added select/insert/empty to the top of the page : why only browse ? there is so much space...

This commit is contained in:
Olivier Müller
2001-08-15 19:33:14 +00:00
parent b7521ee848
commit b7dac7b6fc
2 changed files with 9 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ $Source$
* left.php3: added display of # of tables, for a better overview.
* config.php3, lib.inc.php3, docs: feature request #451137: limiting size
of data printed in browse view (new cfg: $cfgLimitChars).
* tbl_properties.php3: added select/insert/empty to the top of the page
2001-08-15 Robin Johnson <robbat2@orbis-terrarum.net>
* Bug #450374 - (RC4) + becomes space - patched in tbl_replace.php3

View File

@@ -33,8 +33,14 @@ $url_query = 'lang=' . $lang
<!-- first browse link -->
<p>
<a href="sql.php3?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('SELECT * FROM ' . backquote($table)); ?>&pos=0">
<b><?php echo $strBrowse; ?></b></a>
[ <a href="sql.php3?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('SELECT * FROM ' . backquote($table)); ?>&pos=0">
<b><?php echo $strBrowse; ?></b></a> ]&nbsp;&nbsp;&nbsp;
[ <a href="tbl_select.php3?<?php echo $url_query; ?>">
<b><?php echo $strSelect; ?></b></a> ]&nbsp;&nbsp;&nbsp;
[ <a href="tbl_change.php3?<?php echo $url_query; ?>">
<b><?php echo $strInsert; ?></b></a> ]&nbsp;&nbsp;&nbsp;
[ <a href="sql.php3?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('DELETE FROM ' . backquote($table)); ?>&zero_rows=<?php echo urlencode($strTable . ' ' . htmlspecialchars($table) . ' ' . $strHasBeenEmptied); ?>">
<b><?php echo $strEmpty; ?></b></a> ]
</p>
<?php