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