rfe #1927189 strip ` from column names on import
[phpmyadmin/crack.git] / tbl_change.php
blob53acdb391e43271813d667f4bdd06edb9b83c242
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Displays form for editing and inserting new table rows
6 * register_globals_save (mark this file save for disabling register globals)
8 * @version $Id$
9 * @package phpMyAdmin
12 /**
13 * Gets the variables sent or posted to this script and displays the header
15 require_once './libraries/common.inc.php';
17 /**
18 * Ensures db and table are valid, else moves to the "parent" script
20 require_once './libraries/db_table_exists.lib.php';
23 /**
24 * Sets global variables.
25 * Here it's better to use a if, instead of the '?' operator
26 * to avoid setting a variable to '' when it's not present in $_REQUEST
28 /**
29 * @todo this one is badly named, it's really a WHERE condition
30 * and exists even for tables not having a primary key or unique key
32 if (isset($_REQUEST['primary_key'])) {
33 $primary_key = $_REQUEST['primary_key'];
35 if (isset($_SESSION['edit_next'])) {
36 $primary_key = $_SESSION['edit_next'];
37 unset($_SESSION['edit_next']);
38 $after_insert = 'edit_next';
40 if (isset($_REQUEST['sql_query'])) {
41 $sql_query = $_REQUEST['sql_query'];
43 if (isset($_REQUEST['ShowFunctionFields'])) {
44 $cfg['ShowFunctionFields'] = $_REQUEST['ShowFunctionFields'];
47 /**
48 * load relation data, foreign keys
50 require_once './libraries/relation.lib.php';
52 /**
53 * file listing
55 require_once './libraries/file_listing.php';
58 /**
59 * Defines the url to return to in case of error in a sql statement
60 * (at this point, $GLOBALS['goto'] will be set but could be empty)
62 if (empty($GLOBALS['goto'])) {
63 if (strlen($table)) {
64 // avoid a problem (see bug #2202709)
65 $GLOBALS['goto'] = 'tbl_sql.php';
66 } else {
67 $GLOBALS['goto'] = 'db_sql.php';
70 /**
71 * @todo check if we could replace by "db_|tbl_" - please clarify!?
73 $_url_params = array(
74 'db' => $db,
75 'sql_query' => $sql_query
78 if (preg_match('@^tbl_@', $GLOBALS['goto'])) {
79 $_url_params['table'] = $table;
82 $err_url = $GLOBALS['goto'] . PMA_generate_common_url($_url_params);
83 unset($_url_params);
86 /**
87 * Sets parameters for links
88 * where is this variable used?
89 * replace by PMA_generate_common_url($url_params);
91 $url_query = PMA_generate_common_url($url_params, 'html', '');
93 /**
94 * get table information
95 * @todo should be done by a Table object
97 require_once './libraries/tbl_info.inc.php';
99 /**
100 * Get comments for table fileds/columns
102 $comments_map = array();
104 if ($GLOBALS['cfg']['ShowPropertyComments']) {
105 $comments_map = PMA_getComments($db, $table);
109 * START REGULAR OUTPUT
113 * used in ./libraries/header.inc.php to load JavaScript library file
115 $GLOBALS['js_include'][] = 'tbl_change.js';
118 * HTTP and HTML headers
120 require_once './libraries/header.inc.php';
123 * Displays the query submitted and its result
125 * @todo where does $disp_message and $disp_query come from???
127 if (! empty($disp_message)) {
128 if (! isset($disp_query)) {
129 $disp_query = null;
131 PMA_showMessage($disp_message, $disp_query);
135 * Displays top menu links
137 require_once './libraries/tbl_links.inc.php';
141 * Get the analysis of SHOW CREATE TABLE for this table
142 * @todo should be handled by class Table
144 $show_create_table = PMA_DBI_fetch_value(
145 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
146 0, 1);
147 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
148 unset($show_create_table);
151 * Get the list of the fields of the current table
153 PMA_DBI_select_db($db);
154 $table_fields = PMA_DBI_fetch_result('SHOW FIELDS FROM ' . PMA_backquote($table) . ';',
155 null, null, null, PMA_DBI_QUERY_STORE);
156 $rows = array();
157 if (isset($primary_key)) {
158 // when in edit mode load all selected rows from table
159 $insert_mode = false;
160 if (is_array($primary_key)) {
161 $primary_key_array = $primary_key;
162 } else {
163 $primary_key_array = array(0 => $primary_key);
166 $result = array();
167 $found_unique_key = false;
168 foreach ($primary_key_array as $key_id => $primary_key) {
169 $local_query = 'SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . ' WHERE ' . $primary_key . ';';
170 $result[$key_id] = PMA_DBI_query($local_query, null, PMA_DBI_QUERY_STORE);
171 $rows[$key_id] = PMA_DBI_fetch_assoc($result[$key_id]);
172 $primary_keys[$key_id] = str_replace('\\', '\\\\', $primary_key);
174 // No row returned
175 if (! $rows[$key_id]) {
176 unset($rows[$key_id], $primary_key_array[$key_id]);
177 PMA_showMessage($strEmptyResultSet, $local_query);
178 echo "\n";
179 require_once './libraries/footer.inc.php';
180 } else { // end if (no record returned)
181 $meta = PMA_DBI_get_fields_meta($result[$key_id]);
182 if ($tmp = PMA_getUniqueCondition($result[$key_id], count($meta), $meta, $rows[$key_id], true)) {
183 $found_unique_key = true;
185 unset($tmp);
188 } else {
189 // no primary key given, just load first row - but what happens if tbale is empty?
190 $insert_mode = true;
191 $result = PMA_DBI_query('SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . ' LIMIT 1;', null, PMA_DBI_QUERY_STORE);
192 $rows = array_fill(0, $cfg['InsertRows'], false);
195 // <markus@noga.de>
196 // retrieve keys into foreign fields, if any
197 $foreigners = PMA_getForeigners($db, $table);
201 * Displays the form
203 // loic1: autocomplete feature of IE kills the "onchange" event handler and it
204 // must be replaced by the "onpropertychange" one in this case
205 $chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5 && PMA_USR_BROWSER_VER < 7)
206 ? 'onpropertychange'
207 : 'onchange';
208 // Had to put the URI because when hosted on an https server,
209 // some browsers send wrongly this form to the http server.
211 if ($cfg['CtrlArrowsMoving']) {
213 <!-- Set on key handler for moving using by Ctrl+arrows -->
214 <script src="./js/keyhandler.js" type="text/javascript"></script>
215 <script type="text/javascript">
216 //<![CDATA[
217 var switch_movement = 0;
218 document.onkeydown = onKeyDownArrowsHandler;
219 //]]>
220 </script>
221 <?php
224 $_form_params = array(
225 'db' => $db,
226 'table' => $table,
227 'goto' => $GLOBALS['goto'],
228 'err_url' => $err_url,
229 'sql_query' => $sql_query,
231 if (isset($primary_keys)) {
232 foreach ($primary_key_array as $key_id => $primary_key) {
233 $_form_params['primary_key[' . $key_id . ']'] = trim($primary_key);
238 <!-- Insert/Edit form -->
239 <form method="post" action="tbl_replace.php" name="insertForm" <?php if ($is_upload) { echo ' enctype="multipart/form-data"'; } ?>>
240 <?php
241 echo PMA_generate_common_hidden_inputs($_form_params);
243 $titles['Browse'] = PMA_getIcon('b_browse.png', $strBrowseForeignValues);
245 // Set if we passed the first timestamp field
246 $timestamp_seen = 0;
247 $fields_cnt = count($table_fields);
249 $tabindex = 0;
250 $tabindex_for_function = +3000;
251 $tabindex_for_null = +6000;
252 $tabindex_for_value = 0;
253 $o_rows = 0;
254 $biggest_max_file_size = 0;
256 // user can toggle the display of Function column
257 // (currently does not work for multi-edits)
258 $url_params['db'] = $db;
259 $url_params['table'] = $table;
260 if (isset($primary_key)) {
261 $url_params['primary_key'] = trim($primary_key);
263 if (! empty($sql_query)) {
264 $url_params['sql_query'] = $sql_query;
267 if (! $cfg['ShowFunctionFields']) {
268 $this_url_params = array_merge($url_params,
269 array('ShowFunctionFields' => 1));
270 echo $strShow . ' : <a href="tbl_change.php' . PMA_generate_common_url($this_url_params) . '">' . $strFunction . '</a>' . "\n";
273 foreach ($rows as $row_id => $vrow) {
274 if ($vrow === false) {
275 unset($vrow);
278 $jsvkey = $row_id;
279 $browse_foreigners_uri = '&amp;pk=' . $row_id;
280 $vkey = '[multi_edit][' . $jsvkey . ']';
282 $vresult = (isset($result) && is_array($result) && isset($result[$row_id]) ? $result[$row_id] : $result);
283 if ($insert_mode && $row_id > 0) {
284 echo '<input type="checkbox" checked="checked" name="insert_ignore_' . $row_id . '" id="insert_ignore_check_' . $row_id . '" />';
285 echo '<label for="insert_ignore_check_' . $row_id . '">' . $strIgnore . '</label><br />' . "\n";
288 <table>
289 <thead>
290 <tr>
291 <th><?php echo $strField; ?></th>
292 <th><?php echo $strType; ?></th>
293 <?php
294 if ($cfg['ShowFunctionFields']) {
295 $this_url_params = array_merge($url_params,
296 array('ShowFunctionFields' => 0));
297 echo ' <th><a href="tbl_change.php' . PMA_generate_common_url($this_url_params) . '" title="' . $strHide . '">' . $strFunction . '</a></th>' . "\n";
300 <th><?php echo $strNull; ?></th>
301 <th><?php echo $strValue; ?></th>
302 </tr>
303 </thead>
304 <tfoot>
305 <tr>
306 <th colspan="5" align="right" class="tblFooters">
307 <input type="submit" value="<?php echo $strGo; ?>" />
308 </th>
309 </tr>
310 </tfoot>
311 <tbody>
312 <?php
313 // Sets a multiplier used for input-field counts (as zero cannot be used, advance the counter plus one)
314 $m_rows = $o_rows + 1;
316 $odd_row = true;
317 for ($i = 0; $i < $fields_cnt; $i++) {
318 if (! isset($table_fields[$i]['processed'])) {
319 $table_fields[$i]['Field_html'] = htmlspecialchars($table_fields[$i]['Field']);
320 $table_fields[$i]['Field_md5'] = md5($table_fields[$i]['Field']);
321 // True_Type contains only the type (stops at first bracket)
322 $table_fields[$i]['True_Type'] = preg_replace('@\(.*@s', '', $table_fields[$i]['Type']);
324 // d a t e t i m e
326 // loic1: current date should not be set as default if the field is NULL
327 // for the current row
328 // lem9: but do not put here the current datetime if there is a default
329 // value (the real default value will be set in the
330 // Default value logic below)
332 // Note: (tested in MySQL 4.0.16): when lang is some UTF-8,
333 // $field['Default'] is not set if it contains NULL:
334 // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Extra] => [True_Type] => datetime)
335 // but, look what we get if we switch to iso: (Default is NULL)
336 // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Default] => [Extra] => [True_Type] => datetime)
337 // so I force a NULL into it (I don't think it's possible
338 // to have an empty default value for DATETIME)
339 // then, the "if" after this one will work
340 if ($table_fields[$i]['Type'] == 'datetime'
341 && ! isset($table_fields[$i]['Default'])
342 && isset($table_fields[$i]['Null'])
343 && $table_fields[$i]['Null'] == 'YES') {
344 $table_fields[$i]['Default'] = null;
347 $table_fields[$i]['len'] =
348 preg_match('@float|double@', $table_fields[$i]['Type']) ? 100 : -1;
351 if (isset($comments_map[$table_fields[$i]['Field']])) {
352 $table_fields[$i]['Field_title'] = '<span style="border-bottom: 1px dashed black;" title="'
353 . htmlspecialchars($comments_map[$table_fields[$i]['Field']]) . '">'
354 . $table_fields[$i]['Field_html'] . '</span>';
355 } else {
356 $table_fields[$i]['Field_title'] = $table_fields[$i]['Field_html'];
359 // The type column
360 $table_fields[$i]['is_binary'] = stristr($table_fields[$i]['Type'], 'binary');
361 $table_fields[$i]['is_blob'] = stristr($table_fields[$i]['Type'], 'blob');
362 $table_fields[$i]['is_char'] = stristr($table_fields[$i]['Type'], 'char');
363 $table_fields[$i]['first_timestamp'] = false;
364 switch ($table_fields[$i]['True_Type']) {
365 case 'set':
366 $table_fields[$i]['pma_type'] = 'set';
367 $table_fields[$i]['wrap'] = '';
368 break;
369 case 'enum':
370 $table_fields[$i]['pma_type'] = 'enum';
371 $table_fields[$i]['wrap'] = '';
372 break;
373 case 'timestamp':
374 if (!$timestamp_seen) { // can only occur once per table
375 $timestamp_seen = 1;
376 $table_fields[$i]['first_timestamp'] = true;
378 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
379 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
380 break;
382 default:
383 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
384 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
385 break;
388 $field = $table_fields[$i];
389 $extracted_fieldspec = PMA_extractFieldSpec($field['Type']);
391 if (-1 === $field['len']) {
392 $field['len'] = PMA_DBI_field_len($vresult, $i);
395 $unnullify_trigger = $chg_evt_handler . "=\"return unNullify('"
396 . PMA_escapeJsString($field['Field_html']) . "', '"
397 . PMA_escapeJsString($jsvkey) . "')\"";
398 $field_name_appendix = $vkey . '[' . $field['Field_html'] . ']';
399 $field_name_appendix_md5 = $field['Field_md5'] . $vkey . '[]';
402 if ($field['Type'] == 'datetime'
403 && ! isset($field['Default'])
404 && ! is_null($field['Default'])
405 && ($insert_mode || ! isset($vrow[$field['Field']]))) {
406 // INSERT case or
407 // UPDATE case with an NULL value
408 $vrow[$field['Field']] = date('Y-m-d H:i:s', time());
411 <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
412 <td <?php echo ($cfg['LongtextDoubleTextarea'] && strstr($field['True_Type'], 'longtext') ? 'rowspan="2"' : ''); ?> align="center"><?php echo $field['Field_title']; ?></td>
413 <td align="center"<?php echo $field['wrap']; ?>>
414 <?php echo $field['pma_type']; ?>
415 </td>
417 <?php
419 // Prepares the field value
420 $real_null_value = FALSE;
421 if (isset($vrow)) {
422 // On a BLOB that can have a NULL value, the is_null() returns
423 // true if it has no content but for me this is different than
424 // having been set explicitely to NULL so I put an exception here
425 if (! $field['is_blob'] && is_null($vrow[$field['Field']])) {
426 $real_null_value = TRUE;
427 $vrow[$field['Field']] = '';
428 $special_chars = '';
429 $data = $vrow[$field['Field']];
430 } elseif ($field['True_Type'] == 'bit') {
431 $special_chars = PMA_printable_bit_value($vrow[$field], $extracted_fieldspec['spec_in_brackets']);
432 } else {
433 // loic1: special binary "characters"
434 if ($field['is_binary'] || $field['is_blob']) {
435 $vrow[$field['Field']] = PMA_replace_binary_contents($vrow[$field['Field']]);
436 } // end if
437 $special_chars = htmlspecialchars($vrow[$field['Field']]);
439 //We need to duplicate the first \n or otherwise we will lose the first newline entered in a VARCHAR or TEXT column
440 $special_chars_encoded = PMA_duplicateFirstNewline($special_chars);
442 $data = $vrow[$field['Field']];
443 } // end if... else...
444 // loic1: if a timestamp field value is not included in an update
445 // statement MySQL auto-update it to the current timestamp
446 // lem9: however, things have changed since MySQL 4.1, so
447 // it's better to set a fields_prev in this situation
448 $backup_field = '<input type="hidden" name="fields_prev'
449 . $field_name_appendix . '" value="'
450 . htmlspecialchars($vrow[$field['Field']]) . '" />';
451 } else {
452 // loic1: display default values
453 if (!isset($field['Default'])) {
454 $field['Default'] = '';
455 $real_null_value = TRUE;
456 $data = '';
457 } else {
458 $data = $field['Default'];
460 if ($field['True_Type'] == 'bit') {
461 $special_chars = PMA_printable_bit_value($field['Default'], $extracted_fieldspec['spec_in_brackets']);
462 } else {
463 $special_chars = htmlspecialchars($field['Default']);
465 $backup_field = '';
468 $idindex = ($o_rows * $fields_cnt) + $i + 1;
469 $tabindex = (($idindex - 1) * 3) + 1;
471 // The function column
472 // -------------------
473 // Change by Bernard M. Piller <bernard@bmpsystems.com>
474 // We don't want binary data to be destroyed
475 // Note: from the MySQL manual: "BINARY doesn't affect how the column is
476 // stored or retrieved" so it does not mean that the contents is
477 // binary
478 if ($cfg['ShowFunctionFields']) {
479 if (($cfg['ProtectBinary'] && $field['is_blob'] && !$is_upload)
480 || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
481 echo ' <td align="center">' . $strBinary . '</td>' . "\n";
482 } elseif (strstr($field['True_Type'], 'enum') || strstr($field['True_Type'], 'set')) {
483 echo ' <td align="center">--</td>' . "\n";
484 } else {
486 <td>
487 <select name="funcs<?php echo $field_name_appendix; ?>" <?php echo $unnullify_trigger; ?> tabindex="<?php echo ($tabindex + $tabindex_for_function); ?>" id="field_<?php echo $idindex; ?>_1">
488 <option></option>
489 <?php
490 $selected = '';
492 // garvin: Find the current type in the RestrictColumnTypes. Will result in 'FUNC_CHAR'
493 // or something similar. Then directly look up the entry in the RestrictFunctions array,
494 // which will then reveal the available dropdown options
495 if (isset($cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])])
496 && isset($cfg['RestrictFunctions'][$cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])]])) {
497 $current_func_type = $cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])];
498 $dropdown = $cfg['RestrictFunctions'][$current_func_type];
499 $default_function = $cfg['DefaultFunctions'][$current_func_type];
500 } else {
501 $dropdown = array();
502 $default_function = '';
505 $dropdown_built = array();
506 $op_spacing_needed = FALSE;
508 // what function defined as default?
509 // for the first timestamp we don't set the default function
510 // if there is a default value for the timestamp
511 // (not including CURRENT_TIMESTAMP)
512 // and the column does not have the
513 // ON UPDATE DEFAULT TIMESTAMP attribute.
515 if ($field['True_Type'] == 'timestamp'
516 && empty($field['Default'])
517 && ! isset($analyzed_sql[0]['create_table_fields'][$field['Field']]['on_update_current_timestamp'])) {
518 $default_function = $cfg['DefaultFunctions']['first_timestamp'];
521 if ($field['Key'] == 'PRI'
522 && ($field['Type'] == 'char(36)' || $field['Type'] == 'varchar(36)')) {
523 $default_function = $cfg['DefaultFunctions']['pk_char36'];
526 // garvin: loop on the dropdown array and print all available options for that field.
527 foreach ($dropdown as $each_dropdown){
528 echo '<option';
529 if ($default_function === $each_dropdown) {
530 echo ' selected="selected"';
532 echo '>' . $each_dropdown . '</option>' . "\n";
533 $dropdown_built[$each_dropdown] = 'TRUE';
534 $op_spacing_needed = TRUE;
537 // garvin: For compatibility's sake, do not let out all other functions. Instead
538 // print a separator (blank) and then show ALL functions which weren't shown
539 // yet.
540 $cnt_functions = count($cfg['Functions']);
541 for ($j = 0; $j < $cnt_functions; $j++) {
542 if (!isset($dropdown_built[$cfg['Functions'][$j]]) || $dropdown_built[$cfg['Functions'][$j]] != 'TRUE') {
543 // Is current function defined as default?
544 $selected = ($field['first_timestamp'] && $cfg['Functions'][$j] == $cfg['DefaultFunctions']['first_timestamp'])
545 || (!$field['first_timestamp'] && $cfg['Functions'][$j] == $default_function)
546 ? ' selected="selected"'
547 : '';
548 if ($op_spacing_needed == TRUE) {
549 echo ' ';
550 echo '<option value="">--------</option>' . "\n";
551 $op_spacing_needed = FALSE;
554 echo ' ';
555 echo '<option' . $selected . '>' . $cfg['Functions'][$j] . '</option>' . "\n";
557 } // end for
558 unset($selected);
560 </select>
561 </td>
562 <?php
564 } // end if ($cfg['ShowFunctionFields'])
567 // The null column
568 // ---------------
569 echo ' <td>' . "\n";
570 if ($field['Null'] == 'YES') {
571 echo ' <input type="hidden" name="fields_null_prev' . $field_name_appendix . '"';
572 if ($real_null_value && !$field['first_timestamp']) {
573 echo ' value="on"';
575 echo ' />' . "\n";
577 if (!(($cfg['ProtectBinary'] && $field['is_blob']) || ($cfg['ProtectBinary'] == 'all' && $field['is_binary']))) {
579 echo ' <input type="checkbox" tabindex="' . ($tabindex + $tabindex_for_null) . '"'
580 . ' name="fields_null' . $field_name_appendix . '"';
581 if ($real_null_value && !$field['first_timestamp']) {
582 echo ' checked="checked"';
584 echo ' id="field_' . ($idindex) . '_2"';
585 $onclick = ' onclick="if (this.checked) {nullify(';
586 if (strstr($field['True_Type'], 'enum')) {
587 if (strlen($field['Type']) > 20) {
588 $onclick .= '1, ';
589 } else {
590 $onclick .= '2, ';
592 } elseif (strstr($field['True_Type'], 'set')) {
593 $onclick .= '3, ';
594 } elseif ($foreigners && isset($foreigners[$field['Field']])) {
595 $onclick .= '4, ';
596 } else {
597 $onclick .= '5, ';
599 $onclick .= '\'' . PMA_escapeJsString($field['Field_html']) . '\', \'' . $field['Field_md5'] . '\', \'' . PMA_escapeJsString($vkey) . '\'); this.checked = true}; return true" />' . "\n";
600 echo $onclick;
601 } else {
602 echo ' <input type="hidden" name="fields_null' . $field_name_appendix . '"';
603 if ($real_null_value && !$field['first_timestamp']) {
604 echo ' value="on"';
606 echo ' />' . "\n";
609 echo ' </td>' . "\n";
611 // The value column (depends on type)
612 // ----------------
613 // See bug #1667887 for the reason why we don't use the maxlength
614 // HTML attribute
616 $foreignData = PMA_getForeignData($foreigners, $field['Field'], false, '', '');
617 echo ' <td>' . "\n";
618 if ($foreignData['foreign_link'] == true) {
619 echo $backup_field . "\n";
621 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
622 value="foreign" />
623 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
624 value="" id="field_<?php echo ($idindex); ?>_3A" />
625 <input type="text" name="field_<?php echo $field_name_appendix_md5; ?>"
626 class="textfield" <?php echo $unnullify_trigger; ?>
627 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
628 id="field_<?php echo ($idindex); ?>_3"
629 value="<?php echo htmlspecialchars($data); ?>" />
630 <script type="text/javascript">
631 //<![CDATA[
632 document.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes,resizable=yes\'); return false"');
633 document.write(' href="browse_foreigners.php?');
634 document.write('<?php echo PMA_generate_common_url($db, $table); ?>');
635 document.writeln('&amp;field=<?php echo PMA_escapeJsString(urlencode($field['Field']) . $browse_foreigners_uri); ?>">');
636 document.writeln('<?php echo str_replace("'", "\'", $titles['Browse']); ?></a>');
637 //]]>
638 </script>
639 <?php
640 } elseif (is_array($foreignData['disp_row'])) {
641 echo $backup_field . "\n";
643 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
644 value="foreign" />
645 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
646 value="" id="field_<?php echo $idindex; ?>_3A" />
647 <select name="field_<?php echo $field_name_appendix_md5; ?>"
648 <?php echo $unnullify_trigger; ?>
649 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
650 id="field_<?php echo ($idindex); ?>_3">
651 <?php echo PMA_foreignDropdown($foreignData['disp_row'], $foreignData['foreign_field'], $foreignData['foreign_display'], $data, $cfg['ForeignKeyMaxLimit']); ?>
652 </select>
653 <?php
654 // still needed? :
655 unset($foreignData['disp_row']);
656 } elseif ($cfg['LongtextDoubleTextarea'] && strstr($field['pma_type'], 'longtext')) {
658 &nbsp;</td>
659 </tr>
660 <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
661 <td colspan="5" align="right">
662 <?php echo $backup_field . "\n"; ?>
663 <textarea name="fields<?php echo $field_name_appendix; ?>"
664 rows="<?php echo ($cfg['TextareaRows']*2); ?>"
665 cols="<?php echo ($cfg['TextareaCols']*2); ?>"
666 dir="<?php echo $text_dir; ?>"
667 id="field_<?php echo ($idindex); ?>_3"
668 <?php echo $unnullify_trigger; ?>
669 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
670 ><?php echo $special_chars_encoded; ?></textarea>
671 <?php
672 } elseif (strstr($field['pma_type'], 'text')) {
673 echo $backup_field . "\n";
675 <textarea name="fields<?php echo $field_name_appendix; ?>"
676 rows="<?php echo $cfg['TextareaRows']; ?>"
677 cols="<?php echo $cfg['TextareaCols']; ?>"
678 dir="<?php echo $text_dir; ?>"
679 id="field_<?php echo ($idindex); ?>_3"
680 <?php echo $unnullify_trigger; ?>
681 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
682 ><?php echo $special_chars_encoded; ?></textarea>
683 <?php
684 echo "\n";
685 if (strlen($special_chars) > 32000) {
686 echo " </td>\n";
687 echo ' <td>' . $strTextAreaLength;
689 } elseif ($field['pma_type'] == 'enum') {
690 if (! isset($table_fields[$i]['values'])) {
691 $table_fields[$i]['values'] = array();
692 foreach ($extracted_fieldspec['enum_set_values'] as $val) {
693 // Removes automatic MySQL escape format
694 $val = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $val));
695 $table_fields[$i]['values'][] = array(
696 'plain' => $val,
697 'html' => htmlspecialchars($val),
701 $field_enum_values = $table_fields[$i]['values'];
703 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="enum" />
704 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
705 <?php
706 echo "\n" . ' ' . $backup_field . "\n";
708 // show dropdown or radio depend on length
709 if (strlen($field['Type']) > 20) {
711 <select name="field_<?php echo $field_name_appendix_md5; ?>"
712 <?php echo $unnullify_trigger; ?>
713 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
714 id="field_<?php echo ($idindex); ?>_3">
715 <option value="">&nbsp;</option>
716 <?php
717 echo "\n";
719 foreach ($field_enum_values as $enum_value) {
720 echo ' ';
721 echo '<option value="' . $enum_value['html'] . '"';
722 if ($data == $enum_value['plain']
723 || ($data == ''
724 && (! isset($primary_key) || $field['Null'] != 'YES')
725 && isset($field['Default'])
726 && $enum_value['plain'] == $field['Default'])) {
727 echo ' selected="selected"';
729 echo '>' . $enum_value['html'] . '</option>' . "\n";
730 } // end for
733 </select>
734 <?php
735 } else {
736 $j = 0;
737 foreach ($field_enum_values as $enum_value) {
738 echo ' ';
739 echo '<input type="radio" name="field_' . $field_name_appendix_md5 . '"';
740 echo ' value="' . $enum_value['html'] . '"';
741 echo ' id="field_' . ($idindex) . '_3_' . $j . '"';
742 echo ' onclick="';
743 echo "if (typeof(document.forms['insertForm'].elements['fields_null"
744 . $field_name_appendix . "']) != 'undefined') {document.forms['insertForm'].elements['fields_null"
745 . $field_name_appendix . "'].checked = false}";
746 echo '"';
747 if ($data == $enum_value['plain']
748 || ($data == ''
749 && (! isset($primary_key) || $field['Null'] != 'YES')
750 && isset($field['Default'])
751 && $enum_value['plain'] == $field['Default'])) {
752 echo ' checked="checked"';
754 echo ' tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
755 echo '<label for="field_' . $idindex . '_3_' . $j . '">'
756 . $enum_value['html'] . '</label>' . "\n";
757 $j++;
758 } // end for
759 } // end else
760 } elseif ($field['pma_type'] == 'set') {
761 if (! isset($table_fields[$i]['values'])) {
762 $table_fields[$i]['values'] = array();
763 foreach ($extracted_fieldspec['enum_set_values'] as $val) {
764 $table_fields[$i]['values'][] = array(
765 'plain' => $val,
766 'html' => htmlspecialchars($val),
769 $table_fields[$i]['select_size'] = min(4, count($table_fields[$i]['values']));
771 $field_set_values = $table_fields[$i]['values'];
772 $select_size = $table_fields[$i]['select_size'];
774 $vset = array_flip(explode(',', $data));
775 echo $backup_field . "\n";
777 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="set" />
778 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
779 <select name="field_<?php echo $field_name_appendix_md5; ?>"
780 size="<?php echo $select_size; ?>"
781 multiple="multiple" <?php echo $unnullify_trigger; ?>
782 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
783 id="field_<?php echo ($idindex); ?>_3">
784 <?php
785 foreach ($field_set_values as $field_set_value) {
786 echo ' ';
787 echo '<option value="' . $field_set_value['html'] . '"';
788 if (isset($vset[$field_set_value['plain']])) {
789 echo ' selected="selected"';
791 echo '>' . $field_set_value['html'] . '</option>' . "\n";
792 } // end for
794 </select>
795 <?php
797 // Change by Bernard M. Piller <bernard@bmpsystems.com>
798 // We don't want binary data destroyed
799 elseif ($field['is_binary'] || $field['is_blob']) {
800 if (($cfg['ProtectBinary'] && $field['is_blob'])
801 || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
802 echo "\n";
803 // rajk - for blobstreaming
804 $bs_reference_exists = FALSE;
806 if (isset ($tbl_type) && strlen ($tbl_type) > 0)
808 // load PMA_Config
809 $PMA_Config = $_SESSION['PMA_Config'];
811 if (!empty($PMA_Config))
813 $requiredTblType = $PMA_Config->get('PBXT_NAME');
815 if ($requiredTblType == strtolower ($tbl_type))
817 $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST');
819 // check if blobstreaming plugins exist
820 if ($pluginsExist)
822 $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES');
824 if (!empty($bs_tables) && strlen($db) > 0)
826 $bs_tables = $bs_tables[$db];
828 if (isset($bs_tables))
830 $allBSTablesExist = TRUE;
832 foreach ($bs_tables as $table_key=>$bs_tbl)
833 if (!$bs_tables[$table_key]['Exists'])
835 $allBSTablesExist = FALSE;
836 break;
839 if ($allBSTablesExist)
840 $bs_reference_exists = PMA_BS_ReferenceExists($data, $db);
841 } // end if (isset($bs_tables))
842 } // end if (!empty($bs_tables) && strlen($db) > 0)
843 } // end if ($pluginsExist)
844 } // end if ($requiredTblType == strtolower ($tbl_type))
845 } // end if (!empty($PMA_Config))
846 } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0)
848 if ($bs_reference_exists)
850 echo '<input type="hidden" name="remove_blob_ref_' . $field['Field_html'] . $vkey . '" value="' . $data . '" />';
851 echo '<input type="checkbox" name="remove_blob_repo_' . $field['Field_html'] . $vkey . '" /> ' . $strBLOBRepositoryRemove . "<br />";
852 echo PMA_BS_CreateReferenceLink($data, $db);
853 echo "<br />";
855 else
857 echo $strBinaryDoNotEdit;
858 if (isset($data)) {
859 $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1);
860 echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')';
861 unset($data_size);
863 echo "\n";
864 } // end if ($bs_reference_exists)
866 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="protected" />
867 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
868 <?php
869 } elseif ($field['is_blob']) {
870 echo "\n";
871 echo $backup_field . "\n";
873 <textarea name="fields<?php echo $field_name_appendix; ?>"
874 rows="<?php echo $cfg['TextareaRows']; ?>"
875 cols="<?php echo $cfg['TextareaCols']; ?>"
876 dir="<?php echo $text_dir; ?>"
877 id="field_<?php echo ($idindex); ?>_3"
878 <?php echo $unnullify_trigger; ?>
879 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
880 ><?php echo $special_chars_encoded; ?></textarea>
881 <?php
883 } else {
884 // field size should be at least 4 and max 40
885 $fieldsize = min(max($field['len'], 4), 40);
886 echo "\n";
887 echo $backup_field . "\n";
889 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
890 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
891 class="textfield" <?php echo $unnullify_trigger; ?>
892 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
893 id="field_<?php echo ($idindex); ?>_3" />
894 <?php
895 } // end if...elseif...else
897 // Upload choice (only for BLOBs because the binary
898 // attribute does not imply binary contents)
899 // (displayed whatever value the ProtectBinary has)
901 if ($is_upload && $field['is_blob']) {
902 // added by rajk
903 // check if field type is of longblob
904 if ($field['pma_type'] == "longblob")
906 if (isset ($tbl_type) && strlen ($tbl_type) > 0)
908 // load PMA Config
909 $PMA_Config = $_SESSION['PMA_Config'];
911 // is PMA_Config's data loaded? continue only if it is
912 if (!empty($PMA_Config))
914 $requiredTblType = $PMA_Config->get('PBXT_NAME');
916 if ($requiredTblType == strtolower ($tbl_type))
918 $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST');
920 // check if blobstreaming plugins exist
921 if ($pluginsExist)
923 $curlExists = $PMA_Config->get('CURL_EXISTS');
925 // check if CURL exists
926 if ($curlExists)
928 $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES');
930 // check for BLOBStreamable databases and if current database name is provided
931 if (!empty($bs_tables) && strlen($db) > 0)
933 $bs_tables = $bs_tables[$db];
935 // check if reference to BLOBStreaming tables exists
936 if (isset($bs_tables))
938 $allBSTablesExist = TRUE;
940 foreach ($bs_tables as $table_key=>$bs_tbl)
941 if (!$bs_tables[$table_key]['Exists'])
943 $allBSTablesExist = FALSE;
944 break;
947 // check if necessary BLOBStreaming tables exist
948 if ($allBSTablesExist)
950 echo '<br />';
951 echo '<input type="checkbox" name="upload_blob_repo_' . $field['Field_html'] . $vkey . '" /> ' . $strBLOBRepositoryUpload;
952 } // end if ($allBSTablesExist)
953 } // end if (isset($bs_tables)
954 } // end if (!empty($bs_tables) && strlen ($db) > 0)
955 } // end if ($curlExists)
956 } // end if ($pluginsExist)
957 } // end if ($requiredTblType == strtolower ($tbl_type))
958 } // end if (!empty($PMA_Config))
959 } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0)
962 echo '<br />';
963 echo '<input type="file" name="fields_upload_' . $field['Field_html'] . $vkey . '" class="textfield" id="field_' . $idindex . '_3" size="10" />&nbsp;';
965 // find maximum upload size, based on field type
967 * @todo with functions this is not so easy, as you can basically
968 * process any data with function like MD5
970 $max_field_sizes = array(
971 'tinyblob' => '256',
972 'blob' => '65536',
973 'mediumblob' => '16777216',
974 'longblob' => '4294967296'); // yeah, really
976 $this_field_max_size = $max_upload_size; // from PHP max
977 if ($this_field_max_size > $max_field_sizes[$field['pma_type']]) {
978 $this_field_max_size = $max_field_sizes[$field['pma_type']];
980 echo PMA_displayMaximumUploadSize($this_field_max_size) . "\n";
981 // do not generate here the MAX_FILE_SIZE, because we should
982 // put only one in the form to accommodate the biggest field
983 if ($this_field_max_size > $biggest_max_file_size) {
984 $biggest_max_file_size = $this_field_max_size;
988 if (!empty($cfg['UploadDir'])) {
989 $files = PMA_getFileSelectOptions(PMA_userDir($cfg['UploadDir']));
990 if ($files === FALSE) {
991 echo ' <font color="red">' . $strError . '</font><br />' . "\n";
992 echo ' ' . $strWebServerUploadDirectoryError . "\n";
993 } elseif (!empty($files)) {
994 echo "<br />\n";
995 echo ' <i>' . $strOr . '</i>' . ' ' . $strWebServerUploadDirectory . ':<br />' . "\n";
996 echo ' <select size="1" name="fields_uploadlocal_' . $field['Field_html'] . $vkey . '">' . "\n";
997 echo ' <option value="" selected="selected"></option>' . "\n";
998 echo $files;
999 echo ' </select>' . "\n";
1001 } // end if (web-server upload directory)
1002 } // end elseif (binary or blob)
1003 else {
1004 // field size should be at least 4 and max 40
1005 $fieldsize = min(max($field['len'], 4), 40);
1006 echo $backup_field . "\n";
1007 if ($field['is_char'] && ($cfg['CharEditing'] == 'textarea' || strpos($data, "\n") !== FALSE)) {
1008 echo "\n";
1010 <textarea name="fields<?php echo $field_name_appendix; ?>"
1011 rows="<?php echo $cfg['CharTextareaRows']; ?>"
1012 cols="<?php echo $cfg['CharTextareaCols']; ?>"
1013 dir="<?php echo $text_dir; ?>"
1014 id="field_<?php echo ($idindex); ?>_3"
1015 <?php echo $unnullify_trigger; ?>
1016 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
1017 ><?php echo $special_chars_encoded; ?></textarea>
1018 <?php
1019 } else {
1021 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
1022 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
1023 class="textfield" <?php echo $unnullify_trigger; ?>
1024 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
1025 id="field_<?php echo ($idindex); ?>_3" />
1026 <?php
1027 if ($field['Extra'] == 'auto_increment') {
1029 <input type="hidden" name="auto_increment<?php echo $field_name_appendix; ?>" value="1" />
1030 <?php
1031 } // end if
1032 if (substr($field['pma_type'], 0, 9) == 'timestamp') {
1034 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="timestamp" />
1035 <?php
1037 if ($field['True_Type'] == 'bit') {
1039 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="bit" />
1040 <?php
1042 if ($field['pma_type'] == 'date' || $field['pma_type'] == 'datetime' || substr($field['pma_type'], 0, 9) == 'timestamp') {
1044 <script type="text/javascript">
1045 //<![CDATA[
1046 document.write('<a title="<?php echo $strCalendar;?>"');
1047 document.write(' href="javascript:openCalendar(\'<?php echo PMA_generate_common_url();?>\', \'insertForm\', \'field_<?php echo ($idindex); ?>_3\', \'<?php echo (substr($field['pma_type'], 0, 9) == 'timestamp') ? 'datetime' : substr($field['pma_type'], 0, 9); ?>\')">');
1048 document.write('<img class="calendar"');
1049 document.write(' src="<?php echo $pmaThemeImage; ?>b_calendar.png"');
1050 document.write(' alt="<?php echo $strCalendar; ?>"/></a>');
1051 //]]>
1052 </script>
1053 <?php
1058 </td>
1059 </tr>
1060 <?php
1061 $odd_row = !$odd_row;
1062 } // end for
1063 $o_rows++;
1064 echo ' </tbody></table><br />';
1065 } // end foreach on multi-edit
1067 <br />
1069 <fieldset>
1070 <table border="0" cellpadding="5" cellspacing="0">
1071 <tr>
1072 <td valign="middle" nowrap="nowrap">
1073 <select name="submit_type" tabindex="<?php echo ($tabindex + $tabindex_for_value + 1); ?>">
1074 <?php
1075 if (isset($primary_key)) {
1077 <option value="<?php echo $strSave; ?>"><?php echo $strSave; ?></option>
1078 <?php
1081 <option value="<?php echo $strInsertAsNewRow; ?>"><?php echo $strInsertAsNewRow; ?></option>
1082 </select>
1083 <?php
1084 echo "\n";
1086 if (!isset($after_insert)) {
1087 $after_insert = 'back';
1090 </td>
1091 <td valign="middle">
1092 &nbsp;&nbsp;&nbsp;<strong><?php echo $strAndThen; ?></strong>&nbsp;&nbsp;&nbsp;
1093 </td>
1094 <td valign="middle" nowrap="nowrap">
1095 <select name="after_insert">
1096 <option value="back" <?php echo ($after_insert == 'back' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertBack; ?></option>
1097 <option value="new_insert" <?php echo ($after_insert == 'new_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNewInsert; ?></option>
1098 <?php
1099 if (isset($primary_key)) {
1101 <option value="same_insert" <?php echo ($after_insert == 'same_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertSame; ?></option>
1102 <?php
1103 // If we have just numeric primary key, we can also edit next
1104 // in 2.8.2, we were looking for `field_name` = numeric_value
1105 //if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $primary_key)) {
1106 // in 2.9.0, we are looking for `table_name`.`field_name` = numeric_value
1107 if ($found_unique_key && preg_match('@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', $primary_key)) {
1109 <option value="edit_next" <?php echo ($after_insert == 'edit_next' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNext; ?></option>
1110 <?php
1114 </select>
1115 </td>
1116 </tr>
1118 <tr>
1119 <td>
1120 <?php echo PMA_showHint($strUseTabKey); ?>
1121 </td>
1122 <td colspan="3" align="right" valign="middle">
1123 <input type="submit" value="<?php echo $strGo; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 6); ?>" id="buttonYes" />
1124 <input type="reset" value="<?php echo $strReset; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 7); ?>" />
1125 </td>
1126 </tr>
1127 </table>
1128 </fieldset>
1129 <?php if ($biggest_max_file_size > 0) {
1130 echo ' ' . PMA_generateHiddenMaxFileSize($biggest_max_file_size) . "\n";
1131 } ?>
1132 </form>
1133 <?php
1134 if ($insert_mode) {
1136 <!-- Restart insertion form -->
1137 <form method="post" action="tbl_replace.php" name="restartForm" >
1138 <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
1139 <input type="hidden" name="goto" value="<?php echo htmlspecialchars($GLOBALS['goto']); ?>" />
1140 <input type="hidden" name="err_url" value="<?php echo htmlspecialchars($err_url); ?>" />
1141 <input type="hidden" name="sql_query" value="<?php echo htmlspecialchars($sql_query); ?>" />
1142 <?php
1143 if (isset($primary_keys)) {
1144 foreach ($primary_key_array as $key_id => $primary_key) {
1145 echo '<input type="hidden" name="primary_key[' . $key_id . ']" value="' . htmlspecialchars(trim($primary_key)) . '" />'. "\n";
1148 $tmp = '<select name="insert_rows" id="insert_rows" onchange="this.form.submit();" >' . "\n";
1149 $option_values = array(1,2,5,10,15,20,30,40);
1150 foreach ($option_values as $value) {
1151 $tmp .= '<option value="' . $value . '"';
1152 if ($value == $cfg['InsertRows']) {
1153 $tmp .= ' selected="selected"';
1155 $tmp .= '>' . $value . '</option>' . "\n";
1157 $tmp .= '</select>' . "\n";
1158 echo "\n" . sprintf($strRestartInsertion, $tmp);
1159 unset($tmp);
1160 echo '<noscript><input type="submit" value="' . $strGo . '" /></noscript>' . "\n";
1161 echo '</form>' . "\n";
1165 * Displays the footer
1167 require_once './libraries/footer.inc.php';