2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Displays form for editing and inserting new table rows
6 * register_globals_save (mark this file save for disabling register globals)
12 * Gets the variables sent or posted to this script and displays the header
14 require_once './libraries/common.inc.php';
17 * Ensures db and table are valid, else moves to the "parent" script
19 require_once './libraries/db_table_exists.lib.php';
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
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'];
47 * load relation data, foreign keys
49 require_once './libraries/relation.lib.php';
54 require_once './libraries/file_listing.php';
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';
65 * @todo check if we could replace by "db_|tbl_" - please clarify!?
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);
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', '');
88 * get table information
89 * @todo should be done by a Table object
91 require_once './libraries/tbl_info.inc.php';
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)) {
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),
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
);
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;
157 $primary_key_array = array(0 => $primary_key);
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);
169 if (! $rows[$key_id]) {
170 unset($rows[$key_id], $primary_key_array[$key_id]);
171 PMA_showMessage($strEmptyResultSet, $local_query);
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;
183 // no primary key given, just load first row - but what happens if tbale is empty?
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);
190 // retrieve keys into foreign fields, if any
191 $foreigners = PMA_getForeigners($db, $table);
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 && PMA_USR_BROWSER_VER
< 7)
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">
211 var switch_movement
= 0;
212 document
.onkeydown
= onKeyDownArrowsHandler
;
218 $_form_params = array(
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"'; } ?
>>
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
241 $fields_cnt = count($table_fields);
244 $tabindex_for_function = +
3000;
245 $tabindex_for_null = +
6000;
246 $tabindex_for_value = 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) {
273 $browse_foreigners_uri = '&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";
285 <th
><?php
echo $strField; ?
></th
>
286 <th
><?php
echo $strType; ?
></th
>
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
>
300 <th colspan
="5" align
="right" class="tblFooters">
301 <input type
="submit" value
="<?php echo $strGo; ?>" />
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;
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 // True_Type contains only the type (stops at first bracket)
316 $table_fields[$i]['True_Type'] = preg_replace('@\(.*@s', '', $table_fields[$i]['Type']);
320 // loic1: current date should not be set as default if the field is NULL
321 // for the current row
322 // lem9: but do not put here the current datetime if there is a default
323 // value (the real default value will be set in the
324 // Default value logic below)
326 // Note: (tested in MySQL 4.0.16): when lang is some UTF-8,
327 // $field['Default'] is not set if it contains NULL:
328 // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Extra] => [True_Type] => datetime)
329 // but, look what we get if we switch to iso: (Default is NULL)
330 // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Default] => [Extra] => [True_Type] => datetime)
331 // so I force a NULL into it (I don't think it's possible
332 // to have an empty default value for DATETIME)
333 // then, the "if" after this one will work
334 if ($table_fields[$i]['Type'] == 'datetime'
335 && ! isset($table_fields[$i]['Default'])
336 && isset($table_fields[$i]['Null'])
337 && $table_fields[$i]['Null'] == 'YES') {
338 $table_fields[$i]['Default'] = null;
341 $table_fields[$i]['len'] =
342 preg_match('@float|double@', $table_fields[$i]['Type']) ?
100 : -1;
345 if (isset($comments_map[$table_fields[$i]['Field']])) {
346 $table_fields[$i]['Field_title'] = '<span style="border-bottom: 1px dashed black;" title="'
347 . htmlspecialchars($comments_map[$table_fields[$i]['Field']]) . '">'
348 . $table_fields[$i]['Field_html'] . '</span>';
350 $table_fields[$i]['Field_title'] = $table_fields[$i]['Field_html'];
354 $table_fields[$i]['is_binary'] = stristr($table_fields[$i]['Type'], 'binary');
355 $table_fields[$i]['is_blob'] = stristr($table_fields[$i]['Type'], 'blob');
356 $table_fields[$i]['is_char'] = stristr($table_fields[$i]['Type'], 'char');
357 $table_fields[$i]['first_timestamp'] = false;
358 switch ($table_fields[$i]['True_Type']) {
360 $table_fields[$i]['pma_type'] = 'set';
361 $table_fields[$i]['wrap'] = '';
364 $table_fields[$i]['pma_type'] = 'enum';
365 $table_fields[$i]['wrap'] = '';
368 if (!$timestamp_seen) { // can only occur once per table
370 $table_fields[$i]['first_timestamp'] = true;
372 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
373 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
377 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
378 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
382 $field = $table_fields[$i];
383 $extracted_fieldspec = PMA_extractFieldSpec($field['Type']);
385 if (-1 === $field['len']) {
386 $field['len'] = PMA_DBI_field_len($vresult, $i);
389 $unnullify_trigger = $chg_evt_handler . "=\"return unNullify('"
390 . PMA_escapeJsString($field['Field_html']) . "', '"
391 . PMA_escapeJsString($jsvkey) . "')\"";
392 $field_name_appendix = $vkey . '[' . $field['Field_html'] . ']';
393 $field_name_appendix_md5 = $field['Field_md5'] . $vkey . '[]';
396 if ($field['Type'] == 'datetime'
397 && ! isset($field['Default'])
398 && ! is_null($field['Default'])
399 && ($insert_mode ||
! isset($vrow[$field['Field']]))) {
401 // UPDATE case with an NULL value
402 $vrow[$field['Field']] = date('Y-m-d H:i:s', time());
405 <tr
class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
406 <td
<?php
echo ($cfg['LongtextDoubleTextarea'] && strstr($field['True_Type'], 'longtext') ?
'rowspan="2"' : ''); ?
> align
="center"><?php
echo $field['Field_title']; ?
></td
>
407 <td align
="center"<?php
echo $field['wrap']; ?
>>
408 <?php
echo $field['pma_type']; ?
>
413 // Prepares the field value
414 $real_null_value = FALSE;
416 // On a BLOB that can have a NULL value, the is_null() returns
417 // true if it has no content but for me this is different than
418 // having been set explicitely to NULL so I put an exception here
419 if (! $field['is_blob'] && is_null($vrow[$field['Field']])) {
420 $real_null_value = TRUE;
421 $vrow[$field['Field']] = '';
423 $data = $vrow[$field['Field']];
424 } elseif ($field['True_Type'] == 'bit') {
425 $special_chars = PMA_printable_bit_value($vrow[$field], $extracted_fieldspec['spec_in_brackets']);
427 // loic1: special binary "characters"
428 if ($field['is_binary'] ||
$field['is_blob']) {
429 $vrow[$field['Field']] = PMA_replace_binary_contents($vrow[$field['Field']]);
431 $special_chars = htmlspecialchars($vrow[$field['Field']]);
432 $data = $vrow[$field['Field']];
433 } // end if... else...
434 // loic1: if a timestamp field value is not included in an update
435 // statement MySQL auto-update it to the current timestamp
436 // lem9: however, things have changed since MySQL 4.1, so
437 // it's better to set a fields_prev in this situation
438 $backup_field = '<input type="hidden" name="fields_prev'
439 . $field_name_appendix . '" value="'
440 . htmlspecialchars($vrow[$field['Field']]) . '" />';
442 // loic1: display default values
443 if (!isset($field['Default'])) {
444 $field['Default'] = '';
445 $real_null_value = TRUE;
448 $data = $field['Default'];
450 if ($field['True_Type'] == 'bit') {
451 $special_chars = PMA_printable_bit_value($field['Default'], $extracted_fieldspec['spec_in_brackets']);
453 $special_chars = htmlspecialchars($field['Default']);
458 $idindex = ($o_rows * $fields_cnt) +
$i +
1;
459 $tabindex = (($idindex - 1) * 3) +
1;
461 // The function column
462 // -------------------
463 // Change by Bernard M. Piller <bernard@bmpsystems.com>
464 // We don't want binary data to be destroyed
465 // Note: from the MySQL manual: "BINARY doesn't affect how the column is
466 // stored or retrieved" so it does not mean that the contents is
468 if ($cfg['ShowFunctionFields']) {
469 if (($cfg['ProtectBinary'] && $field['is_blob'] && !$is_upload)
470 ||
($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
471 echo ' <td align="center">' . $strBinary . '</td>' . "\n";
472 } elseif (strstr($field['True_Type'], 'enum') ||
strstr($field['True_Type'], 'set')) {
473 echo ' <td align="center">--</td>' . "\n";
477 <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">
482 // garvin: Find the current type in the RestrictColumnTypes. Will result in 'FUNC_CHAR'
483 // or something similar. Then directly look up the entry in the RestrictFunctions array,
484 // which will then reveal the available dropdown options
485 if (isset($cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])])
486 && isset($cfg['RestrictFunctions'][$cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])]])) {
487 $current_func_type = $cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])];
488 $dropdown = $cfg['RestrictFunctions'][$current_func_type];
489 $default_function = $cfg['DefaultFunctions'][$current_func_type];
492 $default_function = '';
495 $dropdown_built = array();
496 $op_spacing_needed = FALSE;
498 // what function defined as default?
499 // for the first timestamp we don't set the default function
500 // if there is a default value for the timestamp
501 // (not including CURRENT_TIMESTAMP)
502 // and the column does not have the
503 // ON UPDATE DEFAULT TIMESTAMP attribute.
505 if ($field['True_Type'] == 'timestamp'
506 && empty($field['Default'])
507 && ! isset($analyzed_sql[0]['create_table_fields'][$field['Field']]['on_update_current_timestamp'])) {
508 $default_function = $cfg['DefaultFunctions']['first_timestamp'];
511 if ($field['Key'] == 'PRI'
512 && ($field['Type'] == 'char(36)' ||
$field['Type'] == 'varchar(36)')) {
513 $default_function = $cfg['DefaultFunctions']['pk_char36'];
516 // garvin: loop on the dropdown array and print all available options for that field.
517 foreach ($dropdown as $each_dropdown){
519 if ($default_function === $each_dropdown) {
520 echo ' selected="selected"';
522 echo '>' . $each_dropdown . '</option>' . "\n";
523 $dropdown_built[$each_dropdown] = 'TRUE';
524 $op_spacing_needed = TRUE;
527 // garvin: For compatibility's sake, do not let out all other functions. Instead
528 // print a separator (blank) and then show ALL functions which weren't shown
530 $cnt_functions = count($cfg['Functions']);
531 for ($j = 0; $j < $cnt_functions; $j++
) {
532 if (!isset($dropdown_built[$cfg['Functions'][$j]]) ||
$dropdown_built[$cfg['Functions'][$j]] != 'TRUE') {
533 // Is current function defined as default?
534 $selected = ($field['first_timestamp'] && $cfg['Functions'][$j] == $cfg['DefaultFunctions']['first_timestamp'])
535 ||
(!$field['first_timestamp'] && $cfg['Functions'][$j] == $default_function)
536 ?
' selected="selected"'
538 if ($op_spacing_needed == TRUE) {
540 echo '<option value="">--------</option>' . "\n";
541 $op_spacing_needed = FALSE;
545 echo '<option' . $selected . '>' . $cfg['Functions'][$j] . '</option>' . "\n";
554 } // end if ($cfg['ShowFunctionFields'])
560 if ($field['Null'] == 'YES') {
561 echo ' <input type="hidden" name="fields_null_prev' . $field_name_appendix . '"';
562 if ($real_null_value && !$field['first_timestamp']) {
567 if (!(($cfg['ProtectBinary'] && $field['is_blob']) ||
($cfg['ProtectBinary'] == 'all' && $field['is_binary']))) {
569 echo ' <input type="checkbox" tabindex="' . ($tabindex +
$tabindex_for_null) . '"'
570 . ' name="fields_null' . $field_name_appendix . '"';
571 if ($real_null_value && !$field['first_timestamp']) {
572 echo ' checked="checked"';
574 echo ' id="field_' . ($idindex) . '_2"';
575 $onclick = ' onclick="if (this.checked) {nullify(';
576 if (strstr($field['True_Type'], 'enum')) {
577 if (strlen($field['Type']) > 20) {
582 } elseif (strstr($field['True_Type'], 'set')) {
584 } elseif ($foreigners && isset($foreigners[$field['Field']])) {
589 $onclick .= '\'' . PMA_escapeJsString($field['Field_html']) . '\', \'' . $field['Field_md5'] . '\', \'' . PMA_escapeJsString($vkey) . '\'); this.checked = true}; return true" />' . "\n";
592 echo ' <input type="hidden" name="fields_null' . $field_name_appendix . '"';
593 if ($real_null_value && !$field['first_timestamp']) {
599 echo ' </td>' . "\n";
601 // The value column (depends on type)
603 // See bug #1667887 for the reason why we don't use the maxlength
606 $foreignData = PMA_getForeignData($foreigners, $field['Field'], false, '', '');
608 if ($foreignData['foreign_link'] == true) {
609 echo $backup_field . "\n";
611 <input type
="hidden" name
="fields_type<?php echo $field_name_appendix; ?>"
613 <input type
="hidden" name
="fields<?php echo $field_name_appendix; ?>"
614 value
="" id
="field_<?php echo ($idindex); ?>_3A" />
615 <input type
="text" name
="field_<?php echo $field_name_appendix_md5; ?>"
616 class="textfield" <?php
echo $unnullify_trigger; ?
>
617 tabindex
="<?php echo ($tabindex + $tabindex_for_value); ?>"
618 id
="field_<?php echo ($idindex); ?>_3"
619 value
="<?php echo htmlspecialchars($data); ?>" />
620 <script type
="text/javascript">
622 document
.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes,resizable=yes\'); return false"');
623 document
.write(' href="browse_foreigners.php?');
624 document
.write('<?php echo PMA_generate_common_url($db, $table); ?>');
625 document
.writeln('&field=<?php echo PMA_escapeJsString(urlencode($field['Field
']) . $browse_foreigners_uri); ?>">');
626 document
.writeln('<?php echo str_replace("'", "\'
", $titles['Browse']); ?></a>');
630 } elseif (is_array($foreignData['disp_row'])) {
631 echo $backup_field . "\n
";
633 <input type="hidden
" name="fields_type
<?php
echo $field_name_appendix; ?
>"
635 <input type="hidden
" name="fields
<?php
echo $field_name_appendix; ?
>"
636 value="" id="field_
<?php
echo $idindex; ?
>_3A
" />
637 <select name="field_
<?php
echo $field_name_appendix_md5; ?
>"
638 <?php echo $unnullify_trigger; ?>
639 tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"
640 id="field_
<?php
echo ($idindex); ?
>_3
">
641 <?php echo PMA_foreignDropdown($foreignData['disp_row'], $foreignData['foreign_field'], $foreignData['foreign_display'], $data, $cfg['ForeignKeyMaxLimit']); ?>
645 unset($foreignData['disp_row']);
646 } elseif ($cfg['LongtextDoubleTextarea'] && strstr($field['pma_type'], 'longtext')) {
650 <tr class="<?php
echo $odd_row ?
'odd' : 'even'; ?
>">
651 <td colspan="5" align="right
">
652 <?php echo $backup_field . "\n
"; ?>
653 <textarea name="fields
<?php
echo $field_name_appendix; ?
>"
654 rows="<?php
echo ($cfg['TextareaRows']*2); ?
>"
655 cols="<?php
echo ($cfg['TextareaCols']*2); ?
>"
656 dir="<?php
echo $text_dir; ?
>"
657 id="field_
<?php
echo ($idindex); ?
>_3
"
658 <?php echo $unnullify_trigger; ?>
659 tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"
660 ><?php echo $special_chars; ?></textarea>
662 } elseif (strstr($field['pma_type'], 'text')) {
663 echo $backup_field . "\n
";
665 <textarea name="fields
<?php
echo $field_name_appendix; ?
>"
666 rows="<?php
echo $cfg['TextareaRows']; ?
>"
667 cols="<?php
echo $cfg['TextareaCols']; ?
>"
668 dir="<?php
echo $text_dir; ?
>"
669 id="field_
<?php
echo ($idindex); ?
>_3
"
670 <?php echo $unnullify_trigger; ?>
671 tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"
672 ><?php echo $special_chars; ?></textarea>
675 if (strlen($special_chars) > 32000) {
677 echo ' <td>' . $strTextAreaLength;
679 } elseif ($field['pma_type'] == 'enum') {
680 if (! isset($table_fields[$i]['values'])) {
681 $table_fields[$i]['values'] = array();
682 foreach ($extracted_fieldspec['enum_set_values'] as $val) {
683 // Removes automatic MySQL escape format
684 $val = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $val));
685 $table_fields[$i]['values'][] = array(
687 'html' => htmlspecialchars($val),
691 $field_enum_values = $table_fields[$i]['values'];
693 <input type="hidden
" name="fields_type
<?php
echo $field_name_appendix; ?
>" value="enum
" />
694 <input type="hidden
" name="fields
<?php
echo $field_name_appendix; ?
>" value="" />
696 echo "\n
" . ' ' . $backup_field . "\n
";
698 // show dropdown or radio depend on length
699 if (strlen($field['Type']) > 20) {
701 <select name="field_
<?php
echo $field_name_appendix_md5; ?
>"
702 <?php echo $unnullify_trigger; ?>
703 tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"
704 id="field_
<?php
echo ($idindex); ?
>_3
">
705 <option value=""> </option>
709 foreach ($field_enum_values as $enum_value) {
711 echo '<option value="' . $enum_value['html
'] . '"';
712 if ($data == $enum_value['plain']
714 && (! isset($primary_key) || $field['Null'] != 'YES')
715 && isset($field['Default'])
716 && $enum_value['plain'] == $field['Default'])) {
717 echo ' selected="selected
"';
719 echo '>' . $enum_value['html'] . '</option>' . "\n
";
727 foreach ($field_enum_values as $enum_value) {
729 echo '<input type="radio
" name="field_
' . $field_name_appendix_md5 . '"';
730 echo ' value="' . $enum_value['html
'] . '"';
731 echo ' id="field_
' . ($idindex) . '_3_
' . $j . '"';
733 echo "if (typeof(document.forms['insertForm
'].elements['fields_null
"
734 . $field_name_appendix . "']) != 'undefined
') {document.forms['insertForm
'].elements['fields_null
"
735 . $field_name_appendix . "'].checked = false}";
737 if ($data == $enum_value['plain']
739 && (! isset($primary_key) || $field['Null'] != 'YES')
740 && isset($field['Default'])
741 && $enum_value['plain'] == $field['Default'])) {
742 echo ' checked="checked
"';
744 echo ' tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
745 echo '<label for="field_
' . $idindex . '_3_
' . $j . '">'
746 . $enum_value['html'] . '</label>' . "\n
";
750 } elseif ($field['pma_type'] == 'set') {
751 if (! isset($table_fields[$i]['values'])) {
752 $table_fields[$i]['values'] = array();
753 foreach ($extracted_fieldspec['enum_set_values'] as $val) {
754 $table_fields[$i]['values'][] = array(
756 'html' => htmlspecialchars($val),
759 $table_fields[$i]['select_size'] = min(4, count($table_fields[$i]['values']));
761 $field_set_values = $table_fields[$i]['values'];
762 $select_size = $table_fields[$i]['select_size'];
764 $vset = array_flip(explode(',', $data));
765 echo $backup_field . "\n
";
767 <input type="hidden
" name="fields_type
<?php
echo $field_name_appendix; ?
>" value="set
" />
768 <input type="hidden
" name="fields
<?php
echo $field_name_appendix; ?
>" value="" />
769 <select name="field_
<?php
echo $field_name_appendix_md5; ?
>"
770 size="<?php
echo $select_size; ?
>"
771 multiple="multiple
" <?php echo $unnullify_trigger; ?>
772 tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"
773 id="field_
<?php
echo ($idindex); ?
>_3
">
775 foreach ($field_set_values as $field_set_value) {
777 echo '<option value="' . $field_set_value['html
'] . '"';
778 if (isset($vset[$field_set_value['plain']])) {
779 echo ' selected="selected
"';
781 echo '>' . $field_set_value['html'] . '</option>' . "\n
";
787 // Change by Bernard M. Piller <bernard@bmpsystems.com>
788 // We don't want binary data destroyed
789 elseif ($field['is_binary'] || $field['is_blob']) {
790 if (($cfg['ProtectBinary'] && $field['is_blob'])
791 || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
793 echo $strBinaryDoNotEdit;
795 $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1);
796 echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')';
801 <input type="hidden
" name="fields_type
<?php
echo $field_name_appendix; ?
>" value="protected" />
802 <input type="hidden
" name="fields
<?php
echo $field_name_appendix; ?
>" value="" />
804 } elseif ($field['is_blob']) {
806 echo $backup_field . "\n
";
808 <textarea name="fields
<?php
echo $field_name_appendix; ?
>"
809 rows="<?php
echo $cfg['TextareaRows']; ?
>"
810 cols="<?php
echo $cfg['TextareaCols']; ?
>"
811 dir="<?php
echo $text_dir; ?
>"
812 id="field_
<?php
echo ($idindex); ?
>_3
"
813 <?php echo $unnullify_trigger; ?>
814 tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"
815 ><?php echo $special_chars; ?></textarea>
819 // field size should be at least 4 and max 40
820 $fieldsize = min(max($field['len'], 4), 40);
822 echo $backup_field . "\n
";
824 <input type="text
" name="fields
<?php
echo $field_name_appendix; ?
>"
825 value="<?php
echo $special_chars; ?
>" size="<?php
echo $fieldsize; ?
>"
826 class="textfield
" <?php echo $unnullify_trigger; ?>
827 tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"
828 id="field_
<?php
echo ($idindex); ?
>_3
" />
830 } // end if...elseif...else
832 // Upload choice (only for BLOBs because the binary
833 // attribute does not imply binary contents)
834 // (displayed whatever value the ProtectBinary has)
836 if ($is_upload && $field['is_blob']) {
838 echo '<input type="file
" name="fields_upload_
' . $field['Field_html
'] . $vkey . '" class="textfield
" id="field_
' . $idindex . '_3
" size="10" /> ';
840 // find maximum upload size, based on field type
842 * @todo with functions this is not so easy, as you can basically
843 * process any data with function like MD5
845 $max_field_sizes = array(
848 'mediumblob' => '16777216',
849 'longblob' => '4294967296'); // yeah, really
851 $this_field_max_size = $max_upload_size; // from PHP max
852 if ($this_field_max_size > $max_field_sizes[$field['pma_type']]) {
853 $this_field_max_size = $max_field_sizes[$field['pma_type']];
855 echo PMA_displayMaximumUploadSize($this_field_max_size) . "\n
";
856 // do not generate here the MAX_FILE_SIZE, because we should
857 // put only one in the form to accommodate the biggest field
858 if ($this_field_max_size > $biggest_max_file_size) {
859 $biggest_max_file_size = $this_field_max_size;
863 if (!empty($cfg['UploadDir'])) {
864 $files = PMA_getFileSelectOptions(PMA_userDir($cfg['UploadDir']));
865 if ($files === FALSE) {
866 echo ' <font color="red
">' . $strError . '</font><br />' . "\n
";
867 echo ' ' . $strWebServerUploadDirectoryError . "\n
";
868 } elseif (!empty($files)) {
870 echo ' <i>' . $strOr . '</i>' . ' ' . $strWebServerUploadDirectory . ':<br />' . "\n
";
871 echo ' <select size="1" name="fields_uploadlocal_
' . $field['Field_html
'] . $vkey . '">' . "\n
";
872 echo ' <option value="" selected="selected
"></option>' . "\n
";
874 echo ' </select>' . "\n
";
876 } // end if (web-server upload directory)
877 } // end elseif (binary or blob)
879 // field size should be at least 4 and max 40
880 $fieldsize = min(max($field['len'], 4), 40);
881 echo $backup_field . "\n
";
882 if ($field['is_char'] && ($cfg['CharEditing'] == 'textarea' || strpos($data, "\n
") !== FALSE)) {
885 <textarea name="fields
<?php
echo $field_name_appendix; ?
>"
886 rows="<?php
echo $cfg['CharTextareaRows']; ?
>"
887 cols="<?php
echo $cfg['CharTextareaCols']; ?
>"
888 dir="<?php
echo $text_dir; ?
>"
889 id="field_
<?php
echo ($idindex); ?
>_3
"
890 <?php echo $unnullify_trigger; ?>
891 tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"
892 ><?php echo $special_chars; ?></textarea>
896 <input type="text
" name="fields
<?php
echo $field_name_appendix; ?
>"
897 value="<?php
echo $special_chars; ?
>" size="<?php
echo $fieldsize; ?
>"
898 class="textfield
" <?php echo $unnullify_trigger; ?>
899 tabindex="<?php
echo ($tabindex +
$tabindex_for_value); ?
>"
900 id="field_
<?php
echo ($idindex); ?
>_3
" />
902 if ($field['Extra'] == 'auto_increment') {
904 <input type="hidden
" name="auto_increment
<?php
echo $field_name_appendix; ?
>" value="1" />
907 if (substr($field['pma_type'], 0, 9) == 'timestamp') {
909 <input type="hidden
" name="fields_type
<?php
echo $field_name_appendix; ?
>" value="timestamp
" />
912 if ($field['True_Type'] == 'bit') {
914 <input type="hidden
" name="fields_type
<?php
echo $field_name_appendix; ?
>" value="bit
" />
917 if ($field['pma_type'] == 'date' || $field['pma_type'] == 'datetime' || substr($field['pma_type'], 0, 9) == 'timestamp') {
919 <script type="text
/javascript
">
921 document.write('<a title="<?php
echo $strCalendar;?
>"');
922 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); ?
>\')">');
923 document.write('<img class="calendar
"');
924 document.write(' src="<?php
echo $pmaThemeImage; ?
>b_calendar
.png
"');
925 document.write(' alt="<?php
echo $strCalendar; ?
>"/></a>');
936 $odd_row = !$odd_row;
939 echo ' </tbody></table><br />';
940 } // end foreach on multi-edit
945 <table border="0" cellpadding="5" cellspacing="0">
947 <td valign="middle
" nowrap="nowrap
">
948 <select name="submit_type
" tabindex="<?php
echo ($tabindex +
$tabindex_for_value +
1); ?
>">
950 if (isset($primary_key)) {
952 <option value="<?php
echo $strSave; ?
>"><?php echo $strSave; ?></option>
956 <option value="<?php
echo $strInsertAsNewRow; ?
>"><?php echo $strInsertAsNewRow; ?></option>
961 if (!isset($after_insert)) {
962 $after_insert = 'back';
967 <strong><?php echo $strAndThen; ?></strong>
969 <td valign="middle
" nowrap="nowrap
">
970 <select name="after_insert
">
971 <option value="back
" <?php echo ($after_insert == 'back' ? 'selected="selected
"' : ''); ?>><?php echo $strAfterInsertBack; ?></option>
972 <option value="new_insert
" <?php echo ($after_insert == 'new_insert' ? 'selected="selected
"' : ''); ?>><?php echo $strAfterInsertNewInsert; ?></option>
974 if (isset($primary_key)) {
976 <option value="same_insert
" <?php echo ($after_insert == 'same_insert' ? 'selected="selected
"' : ''); ?>><?php echo $strAfterInsertSame; ?></option>
978 // If we have just numeric primary key, we can also edit next
979 // in 2.8.2, we were looking for `field_name` = numeric_value
980 //if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $primary_key)) {
981 // in 2.9.0, we are looking for `table_name`.`field_name` = numeric_value
982 if ($found_unique_key && preg_match('@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', $primary_key)) {
984 <option value="edit_next
" <?php echo ($after_insert == 'edit_next' ? 'selected="selected
"' : ''); ?>><?php echo $strAfterInsertNext; ?></option>
995 <?php echo PMA_showHint($strUseTabKey); ?>
997 <td colspan="3" align="right
" valign="middle
">
998 <input type="submit
" value="<?php
echo $strGo; ?
>" tabindex="<?php
echo ($tabindex +
$tabindex_for_value +
6); ?
>" id="buttonYes
" />
999 <input type="reset
" value="<?php
echo $strReset; ?
>" tabindex="<?php
echo ($tabindex +
$tabindex_for_value +
7); ?
>" />
1004 <?php if ($biggest_max_file_size > 0) {
1005 echo ' ' . PMA_generateHiddenMaxFileSize($biggest_max_file_size) . "\n
";
1011 <!-- Restart insertion form -->
1012 <form method="post
" action="tbl_replace
.php
" name="restartForm
" >
1013 <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
1014 <input type="hidden
" name="goto" value="<?php
echo htmlspecialchars($GLOBALS['goto']); ?
>" />
1015 <input type="hidden
" name="err_url
" value="<?php
echo htmlspecialchars($err_url); ?
>" />
1016 <input type="hidden
" name="sql_query
" value="<?php
echo htmlspecialchars($sql_query); ?
>" />
1018 if (isset($primary_keys)) {
1019 foreach ($primary_key_array as $key_id => $primary_key) {
1020 echo '<input type="hidden
" name="primary_key
[' . $key_id . ']" value="' . htmlspecialchars(trim($primary_key)) . '" />'. "\n
";
1023 $tmp = '<select name="insert_rows
" id="insert_rows
" onchange="this
.form
.submit();" >' . "\n
";
1024 $option_values = array(1,2,5,10,15,20,30,40);
1025 foreach ($option_values as $value) {
1026 $tmp .= '<option value="' . $value . '"';
1027 if ($value == $cfg['InsertRows']) {
1028 $tmp .= ' selected="selected
"';
1030 $tmp .= '>' . $value . '</option>' . "\n
";
1032 $tmp .= '</select>' . "\n
";
1033 echo "\n
" . sprintf($strRestartInsertion, $tmp);
1035 echo '<noscript><input type="submit
" value="' . $strGo . '" /></noscript>' . "\n
";
1036 echo '</form>' . "\n
";
1040 * Displays the footer
1042 require_once './libraries/footer.inc.php';