xhtml fixes

This commit is contained in:
Loïc Chapeaux
2002-05-05 13:06:53 +00:00
parent 36e9d64014
commit 639a9bb018

View File

@@ -8,8 +8,9 @@
require('./tbl_properties_common.php3'); require('./tbl_properties_common.php3');
require('./tbl_properties_table_info.php3'); require('./tbl_properties_table_info.php3');
?> ?>
<!-- Dump of a database -->
<form method="post" action="tbl_dump.php3" name="tbl_dump"> <!-- Dump of a table -->
<form method="post" action="tbl_dump.php3" name="tbl_dump">
<input type="hidden" name="server" value="<?php echo $server; ?>" /> <input type="hidden" name="server" value="<?php echo $server; ?>" />
<input type="hidden" name="lang" value="<?php echo $lang; ?>" /> <input type="hidden" name="lang" value="<?php echo $lang; ?>" />
<input type="hidden" name="db" value="<?php echo $db; ?>" /> <input type="hidden" name="db" value="<?php echo $db; ?>" />
@@ -35,7 +36,7 @@ require('./tbl_properties_table_info.php3');
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<?php echo $strFieldsEscapedBy; ?>&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<?php echo $strFieldsEscapedBy; ?>&nbsp;
<input type="text" name="escaped" size="2" value="\" class="textfield" />&nbsp;&nbsp;<br /> <input type="text" name="escaped" size="2" value="\" class="textfield" />&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<?php echo $strLinesTerminatedBy; ?>&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<?php echo $strLinesTerminatedBy; ?>&nbsp;
<input type="text" name="add_character" size="2" value="<?php echo ((PMA_whichCrlf() == "\n") ? '\n' : '\r\n'); ?>" class="textfield" />&nbsp;&nbsp;<br/> <input type="text" name="add_character" size="2" value="<?php echo ((PMA_whichCrlf() == "\n") ? '\n' : '\r\n'); ?>" class="textfield" />&nbsp;&nbsp;<br />
<input type="radio" name="what" value="xml" id="radio_dump_xml" /> <input type="radio" name="what" value="xml" id="radio_dump_xml" />
<label for="radio_dump_xml"><?php echo $strExportToXML; ?></label>&nbsp;&nbsp; <label for="radio_dump_xml"><?php echo $strExportToXML; ?></label>&nbsp;&nbsp;
</td> </td>
@@ -102,7 +103,7 @@ if (function_exists('PMA_set_enc_form')) {
</tr> </tr>
<tr> <tr>
<td colspan="2"> <td colspan="2">
&nbsp;<?php echo sprintf($strDumpXRows , '<input type="text" name="limit_to" size="5" value="' . PMA_countRecords($db, $table, TRUE) . '" class="textfield" style="vertical-align: middle" onfocus="this.select()" />' , '<input type="text" name="limit_from" value="0" size="5" class="textfield" style="vertical-align: middle" onfocus="this.select()" />'); ?> &nbsp;<?php echo sprintf($strDumpXRows , '<input type="text" name="limit_to" size="5" value="' . PMA_countRecords($db, $table, TRUE) . '" class="textfield" style="vertical-align: middle" onfocus="this.select()" />' , '<input type="text" name="limit_from" value="0" size="5" class="textfield" style="vertical-align: middle" onfocus="this.select()" />') . "\n"; ?>
</td> </td>
</tr> </tr>
<tr> <tr>
@@ -111,7 +112,7 @@ if (function_exists('PMA_set_enc_form')) {
</td> </td>
</tr> </tr>
</table> </table>
</form> </form>
<?php <?php
/** /**