This commit is contained in:
Marc Delisle
2002-07-14 15:08:10 +00:00
parent 413439e4bf
commit 0d95a0be7c
4 changed files with 11 additions and 3 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-07-14 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html, db_details_exports.php3, tbl_properties_export.php3:
add a link to a new faq entry explaining some dump options
2002-07-13 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php3: bug 580929: do not EXPLAIN if this is
not a SELECT

View File

@@ -2139,9 +2139,11 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
<p>
<b>I want to understand some Export options.</b><br />
&quot;Complete inserts&quot; adds the column names on every INSERT command,
for better documentation.<br />
for better documentation (but resulting file is bigger).<br />
&quot;Extended inserts&quot; provides a shorter dump file by using only
once the INSERT verb and the table name.
once the INSERT verb and the table name.<br />
&quot;Enclose table and field names with backquotes&quot; ensures that
field and table names formed with special characters are protected.<br />
</p>
<a name="faqproject"></a>
<h3>[phpMyAdmin project]</h3>

View File

@@ -162,8 +162,8 @@ if (function_exists('PMA_set_enc_form')) {
<input type="hidden" name="db" value="<?php echo $db;?>" />
</form>
<?php
echo '<a href="./Documentation.html#faqexport" target="documentation">' . $strDocu . '</a>';
/**
* Displays the footer
*/

View File

@@ -157,5 +157,7 @@ echo "\n";
* Displays the footer
*/
echo "\n";
echo '<a href="./Documentation.html#faqexport" target="documentation">' . $strDocu . '</a>' . "\n";
require('./footer.inc.php3');
?>