update
[phpmyadmin/crack.git] / db_details_export.php3
blob4ff180df74d53bc79ebb39b2f52c72e3bb333057
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
6 /**
7 * Gets some core libraries
8 */
9 $sub_part = '_export';
10 require('./db_details_common.php3');
11 $url_query .= '&amp;goto=db_details_export.php3';
12 require('./db_details_db_info.php3');
15 /**
16 * Displays the form
19 <!-- Dump of a database -->
20 <form method="post" action="tbl_dump.php3" name="db_dump">
21 <?php echo $strViewDumpDB; ?><br />
22 <table>
23 <tr>
24 <?php
25 $colspan = '';
26 if ($num_tables > 1) {
27 $colspan = ' colspan="2"';
29 <td>
30 <select name="table_select[]" size="6" multiple="multiple">
31 <?php
32 $i = 0;
33 echo "\n";
34 $is_selected = (!empty($selectall) ? ' selected="selected"' : '');
35 while ($i < $num_tables) {
36 $table = htmlspecialchars((PMA_MYSQL_INT_VERSION >= 32303) ? $tables[$i]['Name'] : $tables[$i]);
37 echo ' <option value="' . $table . '"' . $is_selected . '>' . $table . '</option>' . "\n";
38 $i++;
39 } // end while
41 </select>
42 </td>
43 <?php
44 } // end if
46 echo "\n";
48 <td valign="middle">
49 <input type="radio" name="what" value="structure" id="radio_dump_structure" checked="checked" />
50 <label for="radio_dump_structure"><?php echo $strStrucOnly; ?></label><br />
51 <input type="radio" name="what" id="radio_dump_data" value="data" />
52 <label for="radio_dump_data"><?php echo $strStrucData; ?></label><br />
53 <input type="radio" name="what" id="radio_dump_dataonly" value="dataonly" />
54 <label for="radio_dump_dataonly"><?php echo $strDataOnly; ?></label><br />
55 <input type="radio" name="what" id="radio_dump_xml" value="xml" />
56 <label for="radio_dump_xml"><?php echo $strExportToXML; ?></label>
57 <?php
58 if ($num_tables > 1) {
59 $checkall_url = 'db_details_export.php3'
60 . '?lang=' . $lang
61 . '&amp;convcharset=' . $convcharset
62 . '&amp;server=' . $server
63 . '&amp;db=' . urlencode($db)
64 . '&amp;goto=db_details_export.php3';
66 <br />
67 <a href="<?php echo $checkall_url; ?>&amp;selectall=1#dumpdb" onclick="setSelectOptions('db_dump', 'table_select[]', true); return false;"><?php echo $strSelectAll; ?></a>
68 &nbsp;/&nbsp;
69 <a href="<?php echo $checkall_url; ?>#dumpdb" onclick="setSelectOptions('db_dump', 'table_select[]', false); return false;"><?php echo $strUnselectAll; ?></a>
70 <?php
71 } // end if
72 echo "\n";
74 </td>
75 </tr>
76 <tr>
77 <td<?php echo $colspan; ?>>
78 <input type="checkbox" name="drop" value="1" id="checkbox_dump_drop" />
79 <label for="checkbox_dump_drop"><?php echo $strStrucDrop; ?></label>
80 </td>
81 </tr>
82 <tr>
83 <td<?php echo $colspan; ?>>
84 <input type="checkbox" name="showcolumns" value="yes" id="checkbox_dump_showcolumns" />
85 <label for="checkbox_dump_showcolumns"><?php echo $strCompleteInserts; ?></label>
86 </td>
87 </tr>
88 <tr>
89 <td<?php echo $colspan; ?>>
90 <input type="checkbox" name="extended_ins" value="yes" id="checkbox_dump_extended_ins" />
91 <label for="checkbox_dump_extended_ins"><?php echo $strExtendedInserts; ?></label>
92 </td>
93 </tr>
94 <?php
95 // Add backquotes checkbox
96 if (PMA_MYSQL_INT_VERSION >= 32306) {
98 <tr>
99 <td<?php echo $colspan; ?>>
100 <input type="checkbox" name="use_backquotes" value="1" id="checkbox_dump_use_backquotes" />
101 <label for="checkbox_dump_use_backquotes"><?php echo $strUseBackquotes; ?></label>
102 </td>
103 </tr>
104 <?php
105 } // end backquotes feature
106 echo "\n";
108 <tr>
109 <td<?php echo $colspan; ?>>
110 <input type="checkbox" name="asfile" value="sendit" id="checkbox_dump_asfile" onclick="return checkTransmitDump(this.form, 'transmit')" />
111 <label for="checkbox_dump_asfile"><?php echo $strSend; ?></label>
112 <?php
113 // charset of file
114 if ($cfg['AllowAnywhereRecoding'] && $allow_recoding) {
115 $temp_charset = reset($cfg['AvailableCharsets']);
116 echo "\n" . ' , ' . $strCharsetOfFile . "\n"
117 . ' <select name="charset_of_file" size="1">' . "\n"
118 . ' <option value="' . $temp_charset . '"';
119 if ($temp_charset == $charset) {
120 echo ' selected="selected"';
122 echo '>' . $temp_charset . '</option>' . "\n";
123 while ($temp_charset = next($cfg['AvailableCharsets'])) {
124 echo ' <option value="' . $temp_charset . '"';
125 if ($temp_charset == $charset) {
126 echo ' selected="selected"';
128 echo '>' . $temp_charset . '</option>' . "\n";
129 } // end while
130 echo ' </select>';
131 } // end if
132 echo "\n";
134 // zip, gzip and bzip2 encode features
135 if (PMA_PHP_INT_VERSION >= 40004) {
136 $is_zip = (isset($cfg['ZipDump']) && $cfg['ZipDump'] && @function_exists('gzcompress'));
137 $is_gzip = (isset($cfg['GZipDump']) && $cfg['GZipDump'] && @function_exists('gzencode'));
138 $is_bzip = (isset($cfg['BZipDump']) && $cfg['BZipDump'] && @function_exists('bzcompress'));
139 if ($is_zip || $is_gzip || $is_bzip) {
140 echo "\n" . ' (' . "\n";
141 if ($is_zip) {
143 <input type="checkbox" name="zip" value="zip" id="checkbox_dump_zip" onclick="return checkTransmitDump(this.form, 'zip')" />
144 <?php
145 echo '<label for="checkbox_dump_zip">' . $strZip . '</label>'
146 . (($is_gzip || $is_bzip) ? '&nbsp;' : '') . "\n";
148 if ($is_gzip) {
149 echo "\n"
151 <input type="checkbox" name="gzip" value="gzip" id="checkbox_dump_gzip" onclick="return checkTransmitDump(this.form, 'gzip')" />
152 <?php
153 echo '<label for="checkbox_dump_gzip">' . $strGzip . '</label>'
154 . (($is_bzip) ? '&nbsp;' : '') . "\n";
156 if ($is_bzip) {
157 echo "\n"
159 <input type="checkbox" name="bzip" value="bzip" id="checkbox_dump_bzip" onclick="return checkTransmitDump(this.form, 'bzip')" />
160 <?php
161 echo '<label for="checkbox_dump_bzip">' . $strBzip . '</label>' . "\n";
163 echo "\n" . ' )';
165 } // end *zip feature
166 echo "\n";
168 // Encoding setting form appended by Y.Kawada
169 if (function_exists('PMA_set_enc_form')) {
170 echo ' <br />' . "\n"
171 . PMA_set_enc_form(' ');
174 </td>
175 </tr>
176 <tr>
177 <td<?php echo $colspan; ?>>
178 <input type="submit" value="<?php echo $strGo; ?>" />
179 </td>
180 </tr>
181 </table>
182 <input type="hidden" name="server" value="<?php echo $server; ?>" />
183 <input type="hidden" name="lang" value="<?php echo $lang;?>" />
184 <input type="hidden" name="db" value="<?php echo htmlspecialchars($db);?>" />
185 </form>
187 <a href="./Documentation.html#faqexport" target="documentation"><?php echo $strDocu; ?></a>
190 <?php
192 * Displays the footer
194 require('./footer.inc.php3');