This is a number.
[phpmyadmin/crack.git] / tbl_change.php
blob90064f4e2e3b7026cb15ed47f97f718dba4fd79d
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 */
11 /**
12 * Gets the variables sent or posted to this script and displays the header
14 require_once './libraries/common.inc.php';
16 /**
17 * Ensures db and table are valid, else moves to the "parent" script
19 require_once './libraries/db_table_exists.lib.php';
22 /**
23 * Sets global variables.
24 * Here it's better to use a if, instead of the '?' operator
25 * to avoid setting a variable to '' when it's not present in $_REQUEST
27 /**
28 * @todo this one is badly named, it's really a WHERE condition
29 * and exists even for tables not having a primary key or unique key
31 if (isset($_REQUEST['primary_key'])) {
32 $primary_key = $_REQUEST['primary_key'];
34 if (isset($_SESSION['edit_next'])) {
35 $primary_key = $_SESSION['edit_next'];
36 unset($_SESSION['edit_next']);
37 $after_insert = 'edit_next';
39 if (isset($_REQUEST['sql_query'])) {
40 $sql_query = $_REQUEST['sql_query'];
42 if (isset($_REQUEST['ShowFunctionFields'])) {
43 $cfg['ShowFunctionFields'] = $_REQUEST['ShowFunctionFields'];
46 /**
47 * load relation data, foreign keys
49 require_once './libraries/relation.lib.php';
51 /**
52 * file listing
54 require_once './libraries/file_listing.php';
57 /**
58 * Defines the url to return to in case of error in a sql statement
59 * (at this point, $GLOBALS['goto'] will be set but could be empty)
61 if (empty($GLOBALS['goto'])) {
62 $GLOBALS['goto'] = 'db_sql.php';
64 /**
65 * @todo check if we could replace by "db_|tbl_" - please clarify!?
67 $_url_params = array(
68 'db' => $db,
69 'sql_query' => $sql_query
72 if (preg_match('@^tbl_@', $GLOBALS['goto'])) {
73 $_url_params['table'] = $table;
76 $err_url = $GLOBALS['goto'] . PMA_generate_common_url($_url_params);
77 unset($_url_params);
80 /**
81 * Sets parameters for links
82 * where is this variable used?
83 * replace by PMA_generate_common_url($url_params);
85 $url_query = PMA_generate_common_url($url_params, 'html', '');
87 /**
88 * get table information
89 * @todo should be done by a Table object
91 require_once './libraries/tbl_info.inc.php';
93 /**
94 * Get comments for table fileds/columns
96 $comments_map = array();
98 if ($GLOBALS['cfg']['ShowPropertyComments']) {
99 $comments_map = PMA_getComments($db, $table);
103 * START REGULAR OUTPUT
107 * used in ./libraries/header.inc.php to load JavaScript library file
109 $GLOBALS['js_include'][] = 'tbl_change.js';
112 * HTTP and HTML headers
114 require_once './libraries/header.inc.php';
117 * Displays the query submitted and its result
119 * @todo where does $disp_message and $disp_query come from???
121 if (! empty($disp_message)) {
122 if (! isset($disp_query)) {
123 $disp_query = null;
125 PMA_showMessage($disp_message, $disp_query);
129 * Displays top menu links
131 require_once './libraries/tbl_links.inc.php';
135 * Get the analysis of SHOW CREATE TABLE for this table
136 * @todo should be handled by class Table
138 $show_create_table = PMA_DBI_fetch_value(
139 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
140 0, 1);
141 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
142 unset($show_create_table);
145 * Get the list of the fields of the current table
147 PMA_DBI_select_db($db);
148 $table_fields = PMA_DBI_fetch_result('SHOW FIELDS FROM ' . PMA_backquote($table) . ';',
149 null, null, null, PMA_DBI_QUERY_STORE);
150 $rows = array();
151 if (isset($primary_key)) {
152 // when in edit mode load all selected rows from table
153 $insert_mode = false;
154 if (is_array($primary_key)) {
155 $primary_key_array = $primary_key;
156 } else {
157 $primary_key_array = array(0 => $primary_key);
160 $result = array();
161 $found_unique_key = false;
162 foreach ($primary_key_array as $key_id => $primary_key) {
163 $local_query = 'SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . ' WHERE ' . $primary_key . ';';
164 $result[$key_id] = PMA_DBI_query($local_query, null, PMA_DBI_QUERY_STORE);
165 $rows[$key_id] = PMA_DBI_fetch_assoc($result[$key_id]);
166 $primary_keys[$key_id] = str_replace('\\', '\\\\', $primary_key);
168 // No row returned
169 if (! $rows[$key_id]) {
170 unset($rows[$key_id], $primary_key_array[$key_id]);
171 PMA_showMessage($strEmptyResultSet, $local_query);
172 echo "\n";
173 require_once './libraries/footer.inc.php';
174 } else { // end if (no record returned)
175 $meta = PMA_DBI_get_fields_meta($result[$key_id]);
176 if ($tmp = PMA_getUniqueCondition($result[$key_id], count($meta), $meta, $rows[$key_id], true)) {
177 $found_unique_key = true;
179 unset($tmp);
182 } else {
183 // no primary key given, just load first row - but what happens if tbale is empty?
184 $insert_mode = true;
185 $result = PMA_DBI_query('SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . ' LIMIT 1;', null, PMA_DBI_QUERY_STORE);
186 $rows = array_fill(0, $cfg['InsertRows'], false);
189 // <markus@noga.de>
190 // retrieve keys into foreign fields, if any
191 $foreigners = PMA_getForeigners($db, $table);
195 * Displays the form
197 // loic1: autocomplete feature of IE kills the "onchange" event handler and it
198 // must be replaced by the "onpropertychange" one in this case
199 $chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5)
200 ? 'onpropertychange'
201 : 'onchange';
202 // Had to put the URI because when hosted on an https server,
203 // some browsers send wrongly this form to the http server.
205 if ($cfg['CtrlArrowsMoving']) {
207 <!-- Set on key handler for moving using by Ctrl+arrows -->
208 <script src="./js/keyhandler.js" type="text/javascript"></script>
209 <script type="text/javascript">
210 //<![CDATA[
211 var switch_movement = 0;
212 document.onkeydown = onKeyDownArrowsHandler;
213 //]]>
214 </script>
215 <?php
218 $_form_params = array(
219 'db' => $db,
220 'table' => $table,
221 'goto' => $GLOBALS['goto'],
222 'err_url' => $err_url,
223 'sql_query' => $sql_query,
225 if (isset($primary_keys)) {
226 foreach ($primary_key_array as $key_id => $primary_key) {
227 $_form_params['primary_key[' . $key_id . ']'] = trim($primary_key);
232 <!-- Insert/Edit form -->
233 <form method="post" action="tbl_replace.php" name="insertForm" <?php if ($is_upload) { echo ' enctype="multipart/form-data"'; } ?>>
234 <?php
235 echo PMA_generate_common_hidden_inputs($_form_params);
237 $titles['Browse'] = PMA_getIcon('b_browse.png', $strBrowseForeignValues);
239 // Set if we passed the first timestamp field
240 $timestamp_seen = 0;
241 $fields_cnt = count($table_fields);
243 $tabindex = 0;
244 $tabindex_for_function = +1000;
245 $tabindex_for_null = +2000;
246 $tabindex_for_value = 0;
247 $o_rows = 0;
248 $biggest_max_file_size = 0;
250 // user can toggle the display of Function column
251 // (currently does not work for multi-edits)
252 $url_params['db'] = $db;
253 $url_params['table'] = $table;
254 if (isset($primary_key)) {
255 $url_params['primary_key'] = trim($primary_key);
257 if (! empty($sql_query)) {
258 $url_params['sql_query'] = $sql_query;
261 if (! $cfg['ShowFunctionFields']) {
262 $this_url_params = array_merge($url_params,
263 array('ShowFunctionFields' => 1));
264 echo $strShow . ' : <a href="tbl_change.php' . PMA_generate_common_url($this_url_params) . '">' . $strFunction . '</a>' . "\n";
267 foreach ($rows as $row_id => $vrow) {
268 if ($vrow === false) {
269 unset($vrow);
272 $jsvkey = $row_id;
273 $browse_foreigners_uri = '&amp;pk=' . $row_id;
274 $vkey = '[multi_edit][' . $jsvkey . ']';
276 $vresult = (isset($result) && is_array($result) && isset($result[$row_id]) ? $result[$row_id] : $result);
277 if ($insert_mode && $row_id > 0) {
278 echo '<input type="checkbox" checked="checked" name="insert_ignore_' . $row_id . '" id="insert_ignore_check_' . $row_id . '" />';
279 echo '<label for="insert_ignore_check_' . $row_id . '">' . $strIgnore . '</label><br />' . "\n";
282 <table>
283 <thead>
284 <tr>
285 <th><?php echo $strField; ?></th>
286 <th><?php echo $strType; ?></th>
287 <?php
288 if ($cfg['ShowFunctionFields']) {
289 $this_url_params = array_merge($url_params,
290 array('ShowFunctionFields' => 0));
291 echo ' <th><a href="tbl_change.php' . PMA_generate_common_url($this_url_params) . '" title="' . $strHide . '">' . $strFunction . '</a></th>' . "\n";
294 <th><?php echo $strNull; ?></th>
295 <th><?php echo $strValue; ?></th>
296 </tr>
297 </thead>
298 <tfoot>
299 <tr>
300 <th colspan="5" align="right" class="tblFooters">
301 <input type="submit" value="<?php echo $strGo; ?>" />
302 </th>
303 </tr>
304 </tfoot>
305 <tbody>
306 <?php
307 // Sets a multiplier used for input-field counts (as zero cannot be used, advance the counter plus one)
308 $m_rows = $o_rows + 1;
310 $odd_row = true;
311 for ($i = 0; $i < $fields_cnt; $i++) {
312 if (! isset($table_fields[$i]['processed'])) {
313 $table_fields[$i]['Field_html'] = htmlspecialchars($table_fields[$i]['Field']);
314 $table_fields[$i]['Field_md5'] = md5($table_fields[$i]['Field']);
315 $table_fields[$i]['True_Type'] = preg_replace('@\(.*@s', '', $table_fields[$i]['Type']);
317 // d a t e t i m e
319 // loic1: current date should not be set as default if the field is NULL
320 // for the current row
321 // lem9: but do not put here the current datetime if there is a default
322 // value (the real default value will be set in the
323 // Default value logic below)
325 // Note: (tested in MySQL 4.0.16): when lang is some UTF-8,
326 // $field['Default'] is not set if it contains NULL:
327 // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Extra] => [True_Type] => datetime)
328 // but, look what we get if we switch to iso: (Default is NULL)
329 // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Default] => [Extra] => [True_Type] => datetime)
330 // so I force a NULL into it (I don't think it's possible
331 // to have an empty default value for DATETIME)
332 // then, the "if" after this one will work
333 if ($table_fields[$i]['Type'] == 'datetime'
334 && ! isset($table_fields[$i]['Default'])
335 && isset($table_fields[$i]['Null'])
336 && $table_fields[$i]['Null'] == 'YES') {
337 $table_fields[$i]['Default'] = null;
340 $table_fields[$i]['len'] =
341 preg_match('@float|double@', $table_fields[$i]['Type']) ? 100 : -1;
344 if (isset($comments_map[$table_fields[$i]['Field']])) {
345 $table_fields[$i]['Field_title'] = '<span style="border-bottom: 1px dashed black;" title="'
346 . htmlspecialchars($comments_map[$table_fields[$i]['Field']]) . '">'
347 . $table_fields[$i]['Field_html'] . '</span>';
348 } else {
349 $table_fields[$i]['Field_title'] = $table_fields[$i]['Field_html'];
352 // The type column
353 $table_fields[$i]['is_binary'] = stristr($table_fields[$i]['Type'], 'binary');
354 $table_fields[$i]['is_blob'] = stristr($table_fields[$i]['Type'], 'blob');
355 $table_fields[$i]['is_char'] = stristr($table_fields[$i]['Type'], 'char');
356 $table_fields[$i]['first_timestamp'] = false;
357 switch ($table_fields[$i]['True_Type']) {
358 case 'set':
359 $table_fields[$i]['pma_type'] = 'set';
360 $table_fields[$i]['wrap'] = '';
361 break;
362 case 'enum':
363 $table_fields[$i]['pma_type'] = 'enum';
364 $table_fields[$i]['wrap'] = '';
365 break;
366 case 'timestamp':
367 if (!$timestamp_seen) { // can only occur once per table
368 $timestamp_seen = 1;
369 $table_fields[$i]['first_timestamp'] = true;
371 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
372 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
373 break;
375 default:
376 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
377 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
378 break;
381 $field = $table_fields[$i];
382 $type_and_length = PMA_extract_type_length($field['Type']);
384 if (-1 === $field['len']) {
385 $field['len'] = PMA_DBI_field_len($vresult, $i);
388 $unnullify_trigger = $chg_evt_handler . "=\"return unNullify('"
389 . PMA_escapeJsString($field['Field_html']) . "', '"
390 . PMA_escapeJsString($jsvkey) . "')\"";
391 $field_name_appendix = $vkey . '[' . $field['Field_html'] . ']';
392 $field_name_appendix_md5 = $field['Field_md5'] . $vkey . '[]';
395 if ($field['Type'] == 'datetime'
396 && ! isset($field['Default'])
397 && ! is_null($field['Default'])
398 && ($insert_mode || ! isset($vrow[$field['Field']]))) {
399 // INSERT case or
400 // UPDATE case with an NULL value
401 $vrow[$field['Field']] = date('Y-m-d H:i:s', time());
404 <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
405 <td <?php echo ($cfg['LongtextDoubleTextarea'] && strstr($field['True_Type'], 'longtext') ? 'rowspan="2"' : ''); ?> align="center"><?php echo $field['Field_title']; ?></td>
406 <td align="center"<?php echo $field['wrap']; ?>>
407 <?php echo $field['pma_type']; ?>
408 </td>
410 <?php
412 // Prepares the field value
413 $real_null_value = FALSE;
414 if (isset($vrow)) {
415 // On a BLOB that can have a NULL value, the is_null() returns
416 // true if it has no content but for me this is different than
417 // having been set explicitely to NULL so I put an exception here
418 if (! $field['is_blob'] && is_null($vrow[$field['Field']])) {
419 $real_null_value = TRUE;
420 $vrow[$field['Field']] = '';
421 $special_chars = '';
422 $data = $vrow[$field['Field']];
423 } elseif ($field['True_Type'] == 'bit') {
424 $special_chars = PMA_printable_bit_value($vrow[$field], $type_and_length['length']);
425 } else {
426 // loic1: special binary "characters"
427 if ($field['is_binary'] || $field['is_blob']) {
428 $vrow[$field['Field']] = PMA_replace_binary_contents($vrow[$field['Field']]);
429 } // end if
430 $special_chars = htmlspecialchars($vrow[$field['Field']]);
431 $data = $vrow[$field['Field']];
432 } // end if... else...
433 // loic1: if a timestamp field value is not included in an update
434 // statement MySQL auto-update it to the current timestamp
435 // lem9: however, things have changed since MySQL 4.1, so
436 // it's better to set a fields_prev in this situation
437 $backup_field = '<input type="hidden" name="fields_prev'
438 . $field_name_appendix . '" value="'
439 . htmlspecialchars($vrow[$field['Field']]) . '" />';
440 } else {
441 // loic1: display default values
442 if (!isset($field['Default'])) {
443 $field['Default'] = '';
444 $real_null_value = TRUE;
445 $data = '';
446 } else {
447 $data = $field['Default'];
449 if ($field['True_Type'] == 'bit') {
450 $special_chars = PMA_printable_bit_value($field['Default'], $type_and_length['length']);
451 } else {
452 $special_chars = htmlspecialchars($field['Default']);
454 $backup_field = '';
457 $idindex = ($o_rows * $fields_cnt) + $i + 1;
458 $tabindex = (($idindex - 1) * 3) + 1;
460 // The function column
461 // -------------------
462 // Change by Bernard M. Piller <bernard@bmpsystems.com>
463 // We don't want binary data to be destroyed
464 // Note: from the MySQL manual: "BINARY doesn't affect how the column is
465 // stored or retrieved" so it does not mean that the contents is
466 // binary
467 if ($cfg['ShowFunctionFields']) {
468 if (($cfg['ProtectBinary'] && $field['is_blob'] && !$is_upload)
469 || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
470 echo ' <td align="center">' . $strBinary . '</td>' . "\n";
471 } elseif (strstr($field['True_Type'], 'enum') || strstr($field['True_Type'], 'set')) {
472 echo ' <td align="center">--</td>' . "\n";
473 } else {
475 <td>
476 <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">
477 <option></option>
478 <?php
479 $selected = '';
481 // garvin: Find the current type in the RestrictColumnTypes. Will result in 'FUNC_CHAR'
482 // or something similar. Then directly look up the entry in the RestrictFunctions array,
483 // which will then reveal the available dropdown options
484 if (isset($cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])])
485 && isset($cfg['RestrictFunctions'][$cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])]])) {
486 $current_func_type = $cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])];
487 $dropdown = $cfg['RestrictFunctions'][$current_func_type];
488 $default_function = $cfg['DefaultFunctions'][$current_func_type];
489 } else {
490 $dropdown = array();
491 $default_function = '';
494 $dropdown_built = array();
495 $op_spacing_needed = FALSE;
497 // what function defined as default?
498 // for the first timestamp we don't set the default function
499 // if there is a default value for the timestamp
500 // (not including CURRENT_TIMESTAMP)
501 // and the column does not have the
502 // ON UPDATE DEFAULT TIMESTAMP attribute.
504 if ($field['True_Type'] == 'timestamp'
505 && empty($field['Default'])
506 && ! isset($analyzed_sql[0]['create_table_fields'][$field['Field']]['on_update_current_timestamp'])) {
507 $default_function = $cfg['DefaultFunctions']['first_timestamp'];
510 if ($field['Key'] == 'PRI'
511 && ($field['Type'] == 'char(36)' || $field['Type'] == 'varchar(36)')) {
512 $default_function = $cfg['DefaultFunctions']['pk_char36'];
515 // garvin: loop on the dropdown array and print all available options for that field.
516 foreach ($dropdown as $each_dropdown){
517 echo '<option';
518 if ($default_function === $each_dropdown) {
519 echo ' selected="selected"';
521 echo '>' . $each_dropdown . '</option>' . "\n";
522 $dropdown_built[$each_dropdown] = 'TRUE';
523 $op_spacing_needed = TRUE;
526 // garvin: For compatibility's sake, do not let out all other functions. Instead
527 // print a separator (blank) and then show ALL functions which weren't shown
528 // yet.
529 $cnt_functions = count($cfg['Functions']);
530 for ($j = 0; $j < $cnt_functions; $j++) {
531 if (!isset($dropdown_built[$cfg['Functions'][$j]]) || $dropdown_built[$cfg['Functions'][$j]] != 'TRUE') {
532 // Is current function defined as default?
533 $selected = ($field['first_timestamp'] && $cfg['Functions'][$j] == $cfg['DefaultFunctions']['first_timestamp'])
534 || (!$field['first_timestamp'] && $cfg['Functions'][$j] == $default_function)
535 ? ' selected="selected"'
536 : '';
537 if ($op_spacing_needed == TRUE) {
538 echo ' ';
539 echo '<option value="">--------</option>' . "\n";
540 $op_spacing_needed = FALSE;
543 echo ' ';
544 echo '<option' . $selected . '>' . $cfg['Functions'][$j] . '</option>' . "\n";
546 } // end for
547 unset($selected);
549 </select>
550 </td>
551 <?php
553 } // end if ($cfg['ShowFunctionFields'])
556 // The null column
557 // ---------------
558 echo ' <td>' . "\n";
559 if ($field['Null'] == 'YES') {
560 echo ' <input type="hidden" name="fields_null_prev' . $field_name_appendix . '"';
561 if ($real_null_value && !$field['first_timestamp']) {
562 echo ' value="on"';
564 echo ' />' . "\n";
566 if (!(($cfg['ProtectBinary'] && $field['is_blob']) || ($cfg['ProtectBinary'] == 'all' && $field['is_binary']))) {
568 echo ' <input type="checkbox" tabindex="' . ($tabindex + $tabindex_for_null) . '"'
569 . ' name="fields_null' . $field_name_appendix . '"';
570 if ($real_null_value && !$field['first_timestamp']) {
571 echo ' checked="checked"';
573 echo ' id="field_' . ($idindex) . '_2"';
574 $onclick = ' onclick="if (this.checked) {nullify(';
575 if (strstr($field['True_Type'], 'enum')) {
576 if (strlen($field['Type']) > 20) {
577 $onclick .= '1, ';
578 } else {
579 $onclick .= '2, ';
581 } elseif (strstr($field['True_Type'], 'set')) {
582 $onclick .= '3, ';
583 } elseif ($foreigners && isset($foreigners[$field['Field']])) {
584 $onclick .= '4, ';
585 } else {
586 $onclick .= '5, ';
588 $onclick .= '\'' . PMA_escapeJsString($field['Field_html']) . '\', \'' . $field['Field_md5'] . '\', \'' . PMA_escapeJsString($vkey) . '\'); this.checked = true}; return true" />' . "\n";
589 echo $onclick;
590 } else {
591 echo ' <input type="hidden" name="fields_null' . $field_name_appendix . '"';
592 if ($real_null_value && !$field['first_timestamp']) {
593 echo ' value="on"';
595 echo ' />' . "\n";
598 echo ' </td>' . "\n";
600 // The value column (depends on type)
601 // ----------------
602 // See bug #1667887 for the reason why we don't use the maxlength
603 // HTML attribute
605 $foreignData = PMA_getForeignData($foreigners, $field['Field'], false, '', '');
606 echo ' <td>' . "\n";
607 if ($foreignData['foreign_link'] == true) {
608 echo $backup_field . "\n";
610 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
611 value="foreign" />
612 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
613 value="" id="field_<?php echo ($idindex); ?>_3A" />
614 <input type="text" name="field_<?php echo $field_name_appendix_md5; ?>"
615 class="textfield" <?php echo $unnullify_trigger; ?>
616 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
617 id="field_<?php echo ($idindex); ?>_3"
618 value="<?php echo htmlspecialchars($data); ?>" />
619 <script type="text/javascript">
620 //<![CDATA[
621 document.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes,resizable=yes\'); return false"');
622 document.write(' href="browse_foreigners.php?');
623 document.write('<?php echo PMA_generate_common_url($db, $table); ?>');
624 document.writeln('&amp;field=<?php echo PMA_escapeJsString(urlencode($field['Field']) . $browse_foreigners_uri); ?>">');
625 document.writeln('<?php echo str_replace("'", "\'", $titles['Browse']); ?></a>');
626 //]]>
627 </script>
628 <?php
629 } elseif (is_array($foreignData['disp_row'])) {
630 echo $backup_field . "\n";
632 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
633 value="foreign" />
634 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
635 value="" id="field_<?php echo $idindex; ?>_3A" />
636 <select name="field_<?php echo $field_name_appendix_md5; ?>"
637 <?php echo $unnullify_trigger; ?>
638 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
639 id="field_<?php echo ($idindex); ?>_3">
640 <?php echo PMA_foreignDropdown($foreignData['disp_row'], $foreignData['foreign_field'], $foreignData['foreign_display'], $data, $cfg['ForeignKeyMaxLimit']); ?>
641 </select>
642 <?php
643 // still needed? :
644 unset($foreignData['disp_row']);
645 } elseif ($cfg['LongtextDoubleTextarea'] && strstr($field['pma_type'], 'longtext')) {
647 &nbsp;</td>
648 </tr>
649 <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
650 <td colspan="5" align="right">
651 <?php echo $backup_field . "\n"; ?>
652 <textarea name="fields<?php echo $field_name_appendix; ?>"
653 rows="<?php echo ($cfg['TextareaRows']*2); ?>"
654 cols="<?php echo ($cfg['TextareaCols']*2); ?>"
655 dir="<?php echo $text_dir; ?>"
656 id="field_<?php echo ($idindex); ?>_3"
657 <?php echo $unnullify_trigger; ?>
658 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
659 ><?php echo $special_chars; ?></textarea>
660 <?php
661 } elseif (strstr($field['pma_type'], 'text')) {
662 echo $backup_field . "\n";
664 <textarea name="fields<?php echo $field_name_appendix; ?>"
665 rows="<?php echo $cfg['TextareaRows']; ?>"
666 cols="<?php echo $cfg['TextareaCols']; ?>"
667 dir="<?php echo $text_dir; ?>"
668 id="field_<?php echo ($idindex); ?>_3"
669 <?php echo $unnullify_trigger; ?>
670 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
671 ><?php echo $special_chars; ?></textarea>
672 <?php
673 echo "\n";
674 if (strlen($special_chars) > 32000) {
675 echo " </td>\n";
676 echo ' <td>' . $strTextAreaLength;
678 } elseif ($field['pma_type'] == 'enum') {
679 if (! isset($table_fields[$i]['values'])) {
680 $table_fields[$i]['values'] = array();
681 foreach (PMA_getEnumSetOptions($field['Type']) as $val) {
682 // Removes automatic MySQL escape format
683 $val = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $val));
684 $table_fields[$i]['values'][] = array(
685 'plain' => $val,
686 'html' => htmlspecialchars($val),
690 $field_enum_values = $table_fields[$i]['values'];
692 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="enum" />
693 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
694 <?php
695 echo "\n" . ' ' . $backup_field . "\n";
697 // show dropdown or radio depend on length
698 if (strlen($field['Type']) > 20) {
700 <select name="field_<?php echo $field_name_appendix_md5; ?>"
701 <?php echo $unnullify_trigger; ?>
702 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
703 id="field_<?php echo ($idindex); ?>_3">
704 <option value="">&nbsp;</option>
705 <?php
706 echo "\n";
708 foreach ($field_enum_values as $enum_value) {
709 echo ' ';
710 echo '<option value="' . $enum_value['html'] . '"';
711 if ($data == $enum_value['plain']
712 || ($data == ''
713 && (! isset($primary_key) || $field['Null'] != 'YES')
714 && isset($field['Default'])
715 && $enum_value['plain'] == $field['Default'])) {
716 echo ' selected="selected"';
718 echo '>' . $enum_value['html'] . '</option>' . "\n";
719 } // end for
722 </select>
723 <?php
724 } else {
725 $j = 0;
726 foreach ($field_enum_values as $enum_value) {
727 echo ' ';
728 echo '<input type="radio" name="field_' . $field_name_appendix_md5 . '"';
729 echo ' value="' . $enum_value['html'] . '"';
730 echo ' id="field_' . ($idindex) . '_3_' . $j . '"';
731 echo ' onclick="';
732 echo "if (typeof(document.forms['insertForm'].elements['fields_null"
733 . $field_name_appendix . "']) != 'undefined') {document.forms['insertForm'].elements['fields_null"
734 . $field_name_appendix . "'].checked = false}";
735 echo '"';
736 if ($data == $enum_value['plain']
737 || ($data == ''
738 && (! isset($primary_key) || $field['Null'] != 'YES')
739 && isset($field['Default'])
740 && $enum_value['plain'] == $field['Default'])) {
741 echo ' checked="checked"';
743 echo ' tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
744 echo '<label for="field_' . $idindex . '_3_' . $j . '">'
745 . $enum_value['html'] . '</label>' . "\n";
746 $j++;
747 } // end for
748 } // end else
749 } elseif ($field['pma_type'] == 'set') {
750 if (! isset($table_fields[$i]['values'])) {
751 $table_fields[$i]['values'] = array();
752 foreach (PMA_getEnumSetOptions($field['Type']) as $val) {
753 $table_fields[$i]['values'][] = array(
754 'plain' => $val,
755 'html' => htmlspecialchars($val),
758 $table_fields[$i]['select_size'] = min(4, count($table_fields[$i]['values']));
760 $field_set_values = $table_fields[$i]['values'];
761 $select_size = $table_fields[$i]['select_size'];
763 $vset = array_flip(explode(',', $data));
764 echo $backup_field . "\n";
766 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="set" />
767 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
768 <select name="field_<?php echo $field_name_appendix_md5; ?>"
769 size="<?php echo $select_size; ?>"
770 multiple="multiple" <?php echo $unnullify_trigger; ?>
771 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
772 id="field_<?php echo ($idindex); ?>_3">
773 <?php
774 foreach ($field_set_values as $field_set_value) {
775 echo ' ';
776 echo '<option value="' . $field_set_value['html'] . '"';
777 if (isset($vset[$field_set_value['plain']])) {
778 echo ' selected="selected"';
780 echo '>' . $field_set_value['html'] . '</option>' . "\n";
781 } // end for
783 </select>
784 <?php
786 // Change by Bernard M. Piller <bernard@bmpsystems.com>
787 // We don't want binary data destroyed
788 elseif ($field['is_binary'] || $field['is_blob']) {
789 if (($cfg['ProtectBinary'] && $field['is_blob'])
790 || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
791 echo "\n";
792 echo $strBinaryDoNotEdit;
793 if (isset($data)) {
794 $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1);
795 echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')';
796 unset($data_size);
798 echo "\n";
800 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="protected" />
801 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
802 <?php
803 } elseif ($field['is_blob']) {
804 echo "\n";
805 echo $backup_field . "\n";
807 <textarea name="fields<?php echo $field_name_appendix; ?>"
808 rows="<?php echo $cfg['TextareaRows']; ?>"
809 cols="<?php echo $cfg['TextareaCols']; ?>"
810 dir="<?php echo $text_dir; ?>"
811 id="field_<?php echo ($idindex); ?>_3"
812 <?php echo $unnullify_trigger; ?>
813 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
814 ><?php echo $special_chars; ?></textarea>
815 <?php
817 } else {
818 // field size should be at least 4 and max 40
819 $fieldsize = min(max($field['len'], 4), 40);
820 echo "\n";
821 echo $backup_field . "\n";
823 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
824 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
825 class="textfield" <?php echo $unnullify_trigger; ?>
826 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
827 id="field_<?php echo ($idindex); ?>_3" />
828 <?php
829 } // end if...elseif...else
831 // Upload choice (only for BLOBs because the binary
832 // attribute does not imply binary contents)
833 // (displayed whatever value the ProtectBinary has)
835 if ($is_upload && $field['is_blob']) {
836 echo '<br />';
837 echo '<input type="file" name="fields_upload_' . $field['Field_html'] . $vkey . '" class="textfield" id="field_' . $idindex . '_3" size="10" />&nbsp;';
839 // find maximum upload size, based on field type
841 * @todo with functions this is not so easy, as you can basically
842 * process any data with function like MD5
844 $max_field_sizes = array(
845 'tinyblob' => '256',
846 'blob' => '65536',
847 'mediumblob' => '16777216',
848 'longblob' => '4294967296'); // yeah, really
850 $this_field_max_size = $max_upload_size; // from PHP max
851 if ($this_field_max_size > $max_field_sizes[$field['pma_type']]) {
852 $this_field_max_size = $max_field_sizes[$field['pma_type']];
854 echo PMA_displayMaximumUploadSize($this_field_max_size) . "\n";
855 // do not generate here the MAX_FILE_SIZE, because we should
856 // put only one in the form to accommodate the biggest field
857 if ($this_field_max_size > $biggest_max_file_size) {
858 $biggest_max_file_size = $this_field_max_size;
862 if (!empty($cfg['UploadDir'])) {
863 $files = PMA_getFileSelectOptions(PMA_userDir($cfg['UploadDir']));
864 if ($files === FALSE) {
865 echo ' <font color="red">' . $strError . '</font><br />' . "\n";
866 echo ' ' . $strWebServerUploadDirectoryError . "\n";
867 } elseif (!empty($files)) {
868 echo "<br />\n";
869 echo ' <i>' . $strOr . '</i>' . ' ' . $strWebServerUploadDirectory . ':<br />' . "\n";
870 echo ' <select size="1" name="fields_uploadlocal_' . $field['Field_html'] . $vkey . '">' . "\n";
871 echo ' <option value="" selected="selected"></option>' . "\n";
872 echo $files;
873 echo ' </select>' . "\n";
875 } // end if (web-server upload directory)
876 } // end elseif (binary or blob)
877 else {
878 // field size should be at least 4 and max 40
879 $fieldsize = min(max($field['len'], 4), 40);
880 echo $backup_field . "\n";
881 if ($field['is_char'] && ($cfg['CharEditing'] == 'textarea' || strpos($data, "\n") !== FALSE)) {
882 echo "\n";
884 <textarea name="fields<?php echo $field_name_appendix; ?>"
885 rows="<?php echo $cfg['CharTextareaRows']; ?>"
886 cols="<?php echo $cfg['CharTextareaCols']; ?>"
887 dir="<?php echo $text_dir; ?>"
888 id="field_<?php echo ($idindex); ?>_3"
889 <?php echo $unnullify_trigger; ?>
890 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
891 ><?php echo $special_chars; ?></textarea>
892 <?php
893 } else {
895 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
896 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
897 class="textfield" <?php echo $unnullify_trigger; ?>
898 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
899 id="field_<?php echo ($idindex); ?>_3" />
900 <?php
901 if ($field['Extra'] == 'auto_increment') {
903 <input type="hidden" name="auto_increment<?php echo $field_name_appendix; ?>" value="1" />
904 <?php
905 } // end if
906 if (substr($field['pma_type'], 0, 9) == 'timestamp') {
908 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="timestamp" />
909 <?php
911 if ($field['True_Type'] == 'bit') {
913 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="bit" />
914 <?php
916 if ($field['pma_type'] == 'date' || $field['pma_type'] == 'datetime' || substr($field['pma_type'], 0, 9) == 'timestamp') {
918 <script type="text/javascript">
919 //<![CDATA[
920 document.write('<a title="<?php echo $strCalendar;?>"');
921 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); ?>\')">');
922 document.write('<img class="calendar"');
923 document.write(' src="<?php echo $pmaThemeImage; ?>b_calendar.png"');
924 document.write(' alt="<?php echo $strCalendar; ?>"/></a>');
925 //]]>
926 </script>
927 <?php
932 </td>
933 </tr>
934 <?php
935 $odd_row = !$odd_row;
936 } // end for
937 $o_rows++;
938 echo ' </tbody></table><br />';
939 } // end foreach on multi-edit
941 <br />
943 <fieldset>
944 <table border="0" cellpadding="5" cellspacing="0">
945 <tr>
946 <td valign="middle" nowrap="nowrap">
947 <select name="submit_type" tabindex="<?php echo ($tabindex + $tabindex_for_value + 1); ?>">
948 <?php
949 if (isset($primary_key)) {
951 <option value="<?php echo $strSave; ?>"><?php echo $strSave; ?></option>
952 <?php
955 <option value="<?php echo $strInsertAsNewRow; ?>"><?php echo $strInsertAsNewRow; ?></option>
956 </select>
957 <?php
958 echo "\n";
960 if (!isset($after_insert)) {
961 $after_insert = 'back';
964 </td>
965 <td valign="middle">
966 &nbsp;&nbsp;&nbsp;<b><?php echo $strAndThen; ?></b>&nbsp;&nbsp;&nbsp;
967 </td>
968 <td valign="middle" nowrap="nowrap">
969 <select name="after_insert">
970 <option value="back" <?php echo ($after_insert == 'back' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertBack; ?></option>
971 <option value="new_insert" <?php echo ($after_insert == 'new_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNewInsert; ?></option>
972 <?php
973 if (isset($primary_key)) {
975 <option value="same_insert" <?php echo ($after_insert == 'same_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertSame; ?></option>
976 <?php
977 // If we have just numeric primary key, we can also edit next
978 // in 2.8.2, we were looking for `field_name` = numeric_value
979 //if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $primary_key)) {
980 // in 2.9.0, we are looking for `table_name`.`field_name` = numeric_value
981 if ($found_unique_key && preg_match('@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', $primary_key)) {
983 <option value="edit_next" <?php echo ($after_insert == 'edit_next' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNext; ?></option>
984 <?php
988 </select>
989 </td>
990 </tr>
992 <tr>
993 <td>
994 <?php echo PMA_showHint($strUseTabKey); ?>
995 </td>
996 <td colspan="3" align="right" valign="middle">
997 <input type="submit" value="<?php echo $strGo; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 6); ?>" id="buttonYes" />
998 <input type="reset" value="<?php echo $strReset; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 7); ?>" />
999 </td>
1000 </tr>
1001 </table>
1002 </fieldset>
1003 <?php if ($biggest_max_file_size > 0) {
1004 echo ' ' . PMA_generateHiddenMaxFileSize($biggest_max_file_size) . "\n";
1005 } ?>
1006 </form>
1007 <?php
1008 if ($insert_mode) {
1010 <!-- Restart insertion form -->
1011 <form method="post" action="tbl_replace.php" name="restartForm" >
1012 <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
1013 <input type="hidden" name="goto" value="<?php echo htmlspecialchars($GLOBALS['goto']); ?>" />
1014 <input type="hidden" name="err_url" value="<?php echo htmlspecialchars($err_url); ?>" />
1015 <input type="hidden" name="sql_query" value="<?php echo htmlspecialchars($sql_query); ?>" />
1016 <?php
1017 if (isset($primary_keys)) {
1018 foreach ($primary_key_array as $key_id => $primary_key) {
1019 echo '<input type="hidden" name="primary_key[' . $key_id . ']" value="' . htmlspecialchars(trim($primary_key)) . '" />'. "\n";
1022 $tmp = '<select name="insert_rows" id="insert_rows" onchange="this.form.submit();" >' . "\n";
1023 $option_values = array(1,2,5,10,15,20,30,40);
1024 foreach ($option_values as $value) {
1025 $tmp .= '<option value="' . $value . '"';
1026 if ($value == $cfg['InsertRows']) {
1027 $tmp .= ' selected="selected"';
1029 $tmp .= '>' . $value . '</option>' . "\n";
1031 $tmp .= '</select>' . "\n";
1032 echo "\n" . sprintf($strRestartInsertion, $tmp);
1033 unset($tmp);
1034 echo '<noscript><input type="submit" value="' . $strGo . '" /></noscript>' . "\n";
1035 echo '</form>' . "\n";
1039 * Displays the footer
1041 require_once './libraries/footer.inc.php';