bug #2064649 Missing question mark
[phpmyadmin/crack.git] / tbl_change.php
blobe63ebb8df39377d331d5c3d66fa7410075425353
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 = +3000;
245 $tabindex_for_null = +6000;
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 // True_Type contains only the type (stops at first bracket)
316 $table_fields[$i]['True_Type'] = preg_replace('@\(.*@s', '', $table_fields[$i]['Type']);
318 // d a t e t i m e
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>';
349 } else {
350 $table_fields[$i]['Field_title'] = $table_fields[$i]['Field_html'];
353 // The type column
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']) {
359 case 'set':
360 $table_fields[$i]['pma_type'] = 'set';
361 $table_fields[$i]['wrap'] = '';
362 break;
363 case 'enum':
364 $table_fields[$i]['pma_type'] = 'enum';
365 $table_fields[$i]['wrap'] = '';
366 break;
367 case 'timestamp':
368 if (!$timestamp_seen) { // can only occur once per table
369 $timestamp_seen = 1;
370 $table_fields[$i]['first_timestamp'] = true;
372 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
373 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
374 break;
376 default:
377 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
378 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
379 break;
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']]))) {
400 // INSERT case or
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']; ?>
409 </td>
411 <?php
413 // Prepares the field value
414 $real_null_value = FALSE;
415 if (isset($vrow)) {
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']] = '';
422 $special_chars = '';
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']);
426 } else {
427 // loic1: special binary "characters"
428 if ($field['is_binary'] || $field['is_blob']) {
429 $vrow[$field['Field']] = PMA_replace_binary_contents($vrow[$field['Field']]);
430 } // end if
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']]) . '" />';
441 } else {
442 // loic1: display default values
443 if (!isset($field['Default'])) {
444 $field['Default'] = '';
445 $real_null_value = TRUE;
446 $data = '';
447 } else {
448 $data = $field['Default'];
450 if ($field['True_Type'] == 'bit') {
451 $special_chars = PMA_printable_bit_value($field['Default'], $extracted_fieldspec['spec_in_brackets']);
452 } else {
453 $special_chars = htmlspecialchars($field['Default']);
455 $backup_field = '';
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
467 // binary
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";
474 } else {
476 <td>
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">
478 <option></option>
479 <?php
480 $selected = '';
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];
490 } else {
491 $dropdown = array();
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){
518 echo '<option';
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
529 // yet.
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"'
537 : '';
538 if ($op_spacing_needed == TRUE) {
539 echo ' ';
540 echo '<option value="">--------</option>' . "\n";
541 $op_spacing_needed = FALSE;
544 echo ' ';
545 echo '<option' . $selected . '>' . $cfg['Functions'][$j] . '</option>' . "\n";
547 } // end for
548 unset($selected);
550 </select>
551 </td>
552 <?php
554 } // end if ($cfg['ShowFunctionFields'])
557 // The null column
558 // ---------------
559 echo ' <td>' . "\n";
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']) {
563 echo ' value="on"';
565 echo ' />' . "\n";
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) {
578 $onclick .= '1, ';
579 } else {
580 $onclick .= '2, ';
582 } elseif (strstr($field['True_Type'], 'set')) {
583 $onclick .= '3, ';
584 } elseif ($foreigners && isset($foreigners[$field['Field']])) {
585 $onclick .= '4, ';
586 } else {
587 $onclick .= '5, ';
589 $onclick .= '\'' . PMA_escapeJsString($field['Field_html']) . '\', \'' . $field['Field_md5'] . '\', \'' . PMA_escapeJsString($vkey) . '\'); this.checked = true}; return true" />' . "\n";
590 echo $onclick;
591 } else {
592 echo ' <input type="hidden" name="fields_null' . $field_name_appendix . '"';
593 if ($real_null_value && !$field['first_timestamp']) {
594 echo ' value="on"';
596 echo ' />' . "\n";
599 echo ' </td>' . "\n";
601 // The value column (depends on type)
602 // ----------------
603 // See bug #1667887 for the reason why we don't use the maxlength
604 // HTML attribute
606 $foreignData = PMA_getForeignData($foreigners, $field['Field'], false, '', '');
607 echo ' <td>' . "\n";
608 if ($foreignData['foreign_link'] == true) {
609 echo $backup_field . "\n";
611 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
612 value="foreign" />
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">
621 //<![CDATA[
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('&amp;field=<?php echo PMA_escapeJsString(urlencode($field['Field']) . $browse_foreigners_uri); ?>">');
626 document.writeln('<?php echo str_replace("'", "\'", $titles['Browse']); ?></a>');
627 //]]>
628 </script>
629 <?php
630 } elseif (is_array($foreignData['disp_row'])) {
631 echo $backup_field . "\n";
633 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
634 value="foreign" />
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']); ?>
642 </select>
643 <?php
644 // still needed? :
645 unset($foreignData['disp_row']);
646 } elseif ($cfg['LongtextDoubleTextarea'] && strstr($field['pma_type'], 'longtext')) {
648 &nbsp;</td>
649 </tr>
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>
661 <?php
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>
673 <?php
674 echo "\n";
675 if (strlen($special_chars) > 32000) {
676 echo " </td>\n";
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(
686 'plain' => $val,
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="" />
695 <?php
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="">&nbsp;</option>
706 <?php
707 echo "\n";
709 foreach ($field_enum_values as $enum_value) {
710 echo ' ';
711 echo '<option value="' . $enum_value['html'] . '"';
712 if ($data == $enum_value['plain']
713 || ($data == ''
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";
720 } // end for
723 </select>
724 <?php
725 } else {
726 $j = 0;
727 foreach ($field_enum_values as $enum_value) {
728 echo ' ';
729 echo '<input type="radio" name="field_' . $field_name_appendix_md5 . '"';
730 echo ' value="' . $enum_value['html'] . '"';
731 echo ' id="field_' . ($idindex) . '_3_' . $j . '"';
732 echo ' onclick="';
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}";
736 echo '"';
737 if ($data == $enum_value['plain']
738 || ($data == ''
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";
747 $j++;
748 } // end for
749 } // end else
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(
755 'plain' => $val,
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">
774 <?php
775 foreach ($field_set_values as $field_set_value) {
776 echo ' ';
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";
782 } // end for
784 </select>
785 <?php
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'])) {
792 echo "\n";
793 // rajk - for blobstreaming
794 $bs_reference_exists = FALSE;
796 if (isset ($tbl_type) && strlen ($tbl_type) > 0)
798 // load PMA_Config
799 $PMA_Config = $_SESSION['PMA_Config'];
801 if (!empty($PMA_Config))
803 $requiredTblType = $PMA_Config->get('PBXT_NAME');
805 if ($requiredTblType == strtolower ($tbl_type))
807 $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST');
809 // check if blobstreaming plugins exist
810 if ($pluginsExist)
812 $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES');
814 if (!empty($bs_tables) && strlen($db) > 0)
816 $bs_tables = $bs_tables[$db];
818 if (isset($bs_tables))
820 $allBSTablesExist = TRUE;
822 foreach ($bs_tables as $table_key=>$bs_tbl)
823 if (!$bs_tables[$table_key]['Exists'])
825 $allBSTablesExist = FALSE;
826 break;
829 if ($allBSTablesExist)
830 $bs_reference_exists = PMA_BS_ReferenceExists($data, $db);
831 } // end if (isset($bs_tables))
832 } // end if (!empty($bs_tables) && strlen($db) > 0)
833 } // end if ($pluginsExist)
834 } // end if ($requiredTblType == strtolower ($tbl_type))
835 } // end if (!empty($PMA_Config))
836 } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0)
838 if ($bs_reference_exists)
840 echo '<input type="hidden" name="remove_blob_ref_' . $field['Field_html'] . $vkey . '" value="' . $data . '" />';
841 echo '<input type="checkbox" name="remove_blob_repo_' . $field['Field_html'] . $vkey . '" /> ' . $strBLOBRepositoryRemove . "<br />";
842 echo PMA_BS_CreateReferenceLink($data, $db);
843 echo "<br />";
845 else
847 echo $strBinaryDoNotEdit;
848 if (isset($data)) {
849 $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1);
850 echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')';
851 unset($data_size);
853 echo "\n";
854 } // end if ($bs_reference_exists)
856 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="protected" />
857 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
858 <?php
859 } elseif ($field['is_blob']) {
860 echo "\n";
861 echo $backup_field . "\n";
863 <textarea name="fields<?php echo $field_name_appendix; ?>"
864 rows="<?php echo $cfg['TextareaRows']; ?>"
865 cols="<?php echo $cfg['TextareaCols']; ?>"
866 dir="<?php echo $text_dir; ?>"
867 id="field_<?php echo ($idindex); ?>_3"
868 <?php echo $unnullify_trigger; ?>
869 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
870 ><?php echo $special_chars; ?></textarea>
871 <?php
873 } else {
874 // field size should be at least 4 and max 40
875 $fieldsize = min(max($field['len'], 4), 40);
876 echo "\n";
877 echo $backup_field . "\n";
879 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
880 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
881 class="textfield" <?php echo $unnullify_trigger; ?>
882 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
883 id="field_<?php echo ($idindex); ?>_3" />
884 <?php
885 } // end if...elseif...else
887 // Upload choice (only for BLOBs because the binary
888 // attribute does not imply binary contents)
889 // (displayed whatever value the ProtectBinary has)
891 if ($is_upload && $field['is_blob']) {
892 // added by rajk
893 // check if field type is of longblob
894 if ($field['pma_type'] == "longblob")
896 if (isset ($tbl_type) && strlen ($tbl_type) > 0)
898 // load PMA Config
899 $PMA_Config = $_SESSION['PMA_Config'];
901 // is PMA_Config's data loaded? continue only if it is
902 if (!empty($PMA_Config))
904 $requiredTblType = $PMA_Config->get('PBXT_NAME');
906 if ($requiredTblType == strtolower ($tbl_type))
908 $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST');
910 // check if blobstreaming plugins exist
911 if ($pluginsExist)
913 $curlExists = $PMA_Config->get('CURL_EXISTS');
915 // check if CURL exists
916 if ($curlExists)
918 $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES');
920 // check for BLOBStreamable databases and if current database name is provided
921 if (!empty($bs_tables) && strlen($db) > 0)
923 $bs_tables = $bs_tables[$db];
925 // check if reference to BLOBStreaming tables exists
926 if (isset($bs_tables))
928 $allBSTablesExist = TRUE;
930 foreach ($bs_tables as $table_key=>$bs_tbl)
931 if (!$bs_tables[$table_key]['Exists'])
933 $allBSTablesExist = FALSE;
934 break;
937 // check if necessary BLOBStreaming tables exist
938 if ($allBSTablesExist)
940 echo '<br />';
941 echo '<input type="checkbox" name="upload_blob_repo_' . $field['Field_html'] . $vkey . '" /> ' . $strBLOBRepositoryUpload;
942 } // end if ($allBSTablesExist)
943 } // end if (isset($bs_tables)
944 } // end if (!empty($bs_tables) && strlen ($db) > 0)
945 } // end if ($curlExists)
946 } // end if ($pluginsExist)
947 } // end if ($requiredTblType == strtolower ($tbl_type))
948 } // end if (!empty($PMA_Config))
949 } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0)
952 echo '<br />';
953 echo '<input type="file" name="fields_upload_' . $field['Field_html'] . $vkey . '" class="textfield" id="field_' . $idindex . '_3" size="10" />&nbsp;';
955 // find maximum upload size, based on field type
957 * @todo with functions this is not so easy, as you can basically
958 * process any data with function like MD5
960 $max_field_sizes = array(
961 'tinyblob' => '256',
962 'blob' => '65536',
963 'mediumblob' => '16777216',
964 'longblob' => '4294967296'); // yeah, really
966 $this_field_max_size = $max_upload_size; // from PHP max
967 if ($this_field_max_size > $max_field_sizes[$field['pma_type']]) {
968 $this_field_max_size = $max_field_sizes[$field['pma_type']];
970 echo PMA_displayMaximumUploadSize($this_field_max_size) . "\n";
971 // do not generate here the MAX_FILE_SIZE, because we should
972 // put only one in the form to accommodate the biggest field
973 if ($this_field_max_size > $biggest_max_file_size) {
974 $biggest_max_file_size = $this_field_max_size;
978 if (!empty($cfg['UploadDir'])) {
979 $files = PMA_getFileSelectOptions(PMA_userDir($cfg['UploadDir']));
980 if ($files === FALSE) {
981 echo ' <font color="red">' . $strError . '</font><br />' . "\n";
982 echo ' ' . $strWebServerUploadDirectoryError . "\n";
983 } elseif (!empty($files)) {
984 echo "<br />\n";
985 echo ' <i>' . $strOr . '</i>' . ' ' . $strWebServerUploadDirectory . ':<br />' . "\n";
986 echo ' <select size="1" name="fields_uploadlocal_' . $field['Field_html'] . $vkey . '">' . "\n";
987 echo ' <option value="" selected="selected"></option>' . "\n";
988 echo $files;
989 echo ' </select>' . "\n";
991 } // end if (web-server upload directory)
992 } // end elseif (binary or blob)
993 else {
994 // field size should be at least 4 and max 40
995 $fieldsize = min(max($field['len'], 4), 40);
996 echo $backup_field . "\n";
997 if ($field['is_char'] && ($cfg['CharEditing'] == 'textarea' || strpos($data, "\n") !== FALSE)) {
998 echo "\n";
1000 <textarea name="fields<?php echo $field_name_appendix; ?>"
1001 rows="<?php echo $cfg['CharTextareaRows']; ?>"
1002 cols="<?php echo $cfg['CharTextareaCols']; ?>"
1003 dir="<?php echo $text_dir; ?>"
1004 id="field_<?php echo ($idindex); ?>_3"
1005 <?php echo $unnullify_trigger; ?>
1006 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
1007 ><?php echo $special_chars; ?></textarea>
1008 <?php
1009 } else {
1011 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
1012 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
1013 class="textfield" <?php echo $unnullify_trigger; ?>
1014 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
1015 id="field_<?php echo ($idindex); ?>_3" />
1016 <?php
1017 if ($field['Extra'] == 'auto_increment') {
1019 <input type="hidden" name="auto_increment<?php echo $field_name_appendix; ?>" value="1" />
1020 <?php
1021 } // end if
1022 if (substr($field['pma_type'], 0, 9) == 'timestamp') {
1024 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="timestamp" />
1025 <?php
1027 if ($field['True_Type'] == 'bit') {
1029 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="bit" />
1030 <?php
1032 if ($field['pma_type'] == 'date' || $field['pma_type'] == 'datetime' || substr($field['pma_type'], 0, 9) == 'timestamp') {
1034 <script type="text/javascript">
1035 //<![CDATA[
1036 document.write('<a title="<?php echo $strCalendar;?>"');
1037 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); ?>\')">');
1038 document.write('<img class="calendar"');
1039 document.write(' src="<?php echo $pmaThemeImage; ?>b_calendar.png"');
1040 document.write(' alt="<?php echo $strCalendar; ?>"/></a>');
1041 //]]>
1042 </script>
1043 <?php
1048 </td>
1049 </tr>
1050 <?php
1051 $odd_row = !$odd_row;
1052 } // end for
1053 $o_rows++;
1054 echo ' </tbody></table><br />';
1055 } // end foreach on multi-edit
1057 <br />
1059 <fieldset>
1060 <table border="0" cellpadding="5" cellspacing="0">
1061 <tr>
1062 <td valign="middle" nowrap="nowrap">
1063 <select name="submit_type" tabindex="<?php echo ($tabindex + $tabindex_for_value + 1); ?>">
1064 <?php
1065 if (isset($primary_key)) {
1067 <option value="<?php echo $strSave; ?>"><?php echo $strSave; ?></option>
1068 <?php
1071 <option value="<?php echo $strInsertAsNewRow; ?>"><?php echo $strInsertAsNewRow; ?></option>
1072 </select>
1073 <?php
1074 echo "\n";
1076 if (!isset($after_insert)) {
1077 $after_insert = 'back';
1080 </td>
1081 <td valign="middle">
1082 &nbsp;&nbsp;&nbsp;<strong><?php echo $strAndThen; ?></strong>&nbsp;&nbsp;&nbsp;
1083 </td>
1084 <td valign="middle" nowrap="nowrap">
1085 <select name="after_insert">
1086 <option value="back" <?php echo ($after_insert == 'back' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertBack; ?></option>
1087 <option value="new_insert" <?php echo ($after_insert == 'new_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNewInsert; ?></option>
1088 <?php
1089 if (isset($primary_key)) {
1091 <option value="same_insert" <?php echo ($after_insert == 'same_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertSame; ?></option>
1092 <?php
1093 // If we have just numeric primary key, we can also edit next
1094 // in 2.8.2, we were looking for `field_name` = numeric_value
1095 //if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $primary_key)) {
1096 // in 2.9.0, we are looking for `table_name`.`field_name` = numeric_value
1097 if ($found_unique_key && preg_match('@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', $primary_key)) {
1099 <option value="edit_next" <?php echo ($after_insert == 'edit_next' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNext; ?></option>
1100 <?php
1104 </select>
1105 </td>
1106 </tr>
1108 <tr>
1109 <td>
1110 <?php echo PMA_showHint($strUseTabKey); ?>
1111 </td>
1112 <td colspan="3" align="right" valign="middle">
1113 <input type="submit" value="<?php echo $strGo; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 6); ?>" id="buttonYes" />
1114 <input type="reset" value="<?php echo $strReset; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 7); ?>" />
1115 </td>
1116 </tr>
1117 </table>
1118 </fieldset>
1119 <?php if ($biggest_max_file_size > 0) {
1120 echo ' ' . PMA_generateHiddenMaxFileSize($biggest_max_file_size) . "\n";
1121 } ?>
1122 </form>
1123 <?php
1124 if ($insert_mode) {
1126 <!-- Restart insertion form -->
1127 <form method="post" action="tbl_replace.php" name="restartForm" >
1128 <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
1129 <input type="hidden" name="goto" value="<?php echo htmlspecialchars($GLOBALS['goto']); ?>" />
1130 <input type="hidden" name="err_url" value="<?php echo htmlspecialchars($err_url); ?>" />
1131 <input type="hidden" name="sql_query" value="<?php echo htmlspecialchars($sql_query); ?>" />
1132 <?php
1133 if (isset($primary_keys)) {
1134 foreach ($primary_key_array as $key_id => $primary_key) {
1135 echo '<input type="hidden" name="primary_key[' . $key_id . ']" value="' . htmlspecialchars(trim($primary_key)) . '" />'. "\n";
1138 $tmp = '<select name="insert_rows" id="insert_rows" onchange="this.form.submit();" >' . "\n";
1139 $option_values = array(1,2,5,10,15,20,30,40);
1140 foreach ($option_values as $value) {
1141 $tmp .= '<option value="' . $value . '"';
1142 if ($value == $cfg['InsertRows']) {
1143 $tmp .= ' selected="selected"';
1145 $tmp .= '>' . $value . '</option>' . "\n";
1147 $tmp .= '</select>' . "\n";
1148 echo "\n" . sprintf($strRestartInsertion, $tmp);
1149 unset($tmp);
1150 echo '<noscript><input type="submit" value="' . $strGo . '" /></noscript>' . "\n";
1151 echo '</form>' . "\n";
1155 * Displays the footer
1157 require_once './libraries/footer.inc.php';