3.3.9.1 release
[phpmyadmin/madhuracj.git] / tbl_change.php
blobcd4fff05d1bc48bdaa13c381aac10ac28d12748a
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';
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 if (isset($_REQUEST['where_clause'])) {
28 $where_clause = $_REQUEST['where_clause'];
30 if (isset($_REQUEST['clause_is_unique'])) {
31 $clause_is_unique = $_REQUEST['clause_is_unique'];
33 if (isset($_SESSION['edit_next'])) {
34 $where_clause = $_SESSION['edit_next'];
35 unset($_SESSION['edit_next']);
36 $after_insert = 'edit_next';
38 if (isset($_REQUEST['sql_query'])) {
39 $sql_query = $_REQUEST['sql_query'];
41 if (isset($_REQUEST['ShowFunctionFields'])) {
42 $cfg['ShowFunctionFields'] = $_REQUEST['ShowFunctionFields'];
45 /**
46 * load relation data, foreign keys
48 require_once './libraries/relation.lib.php';
50 /**
51 * file listing
53 require_once './libraries/file_listing.php';
56 /**
57 * Defines the url to return to in case of error in a sql statement
58 * (at this point, $GLOBALS['goto'] will be set but could be empty)
60 if (empty($GLOBALS['goto'])) {
61 if (strlen($table)) {
62 // avoid a problem (see bug #2202709)
63 $GLOBALS['goto'] = 'tbl_sql.php';
64 } else {
65 $GLOBALS['goto'] = 'db_sql.php';
68 /**
69 * @todo check if we could replace by "db_|tbl_" - please clarify!?
71 $_url_params = array(
72 'db' => $db,
73 'sql_query' => $sql_query
76 if (preg_match('@^tbl_@', $GLOBALS['goto'])) {
77 $_url_params['table'] = $table;
80 $err_url = $GLOBALS['goto'] . PMA_generate_common_url($_url_params);
81 unset($_url_params);
84 /**
85 * Sets parameters for links
86 * where is this variable used?
87 * replace by PMA_generate_common_url($url_params);
89 $url_query = PMA_generate_common_url($url_params, 'html', '');
91 /**
92 * get table information
93 * @todo should be done by a Table object
95 require_once './libraries/tbl_info.inc.php';
97 /**
98 * Get comments for table fileds/columns
100 $comments_map = array();
102 if ($GLOBALS['cfg']['ShowPropertyComments']) {
103 $comments_map = PMA_getComments($db, $table);
107 * START REGULAR OUTPUT
111 * used in ./libraries/header.inc.php to load JavaScript library file
113 $GLOBALS['js_include'][] = 'tbl_change.js';
116 * HTTP and HTML headers
118 require_once './libraries/header.inc.php';
121 * Displays the query submitted and its result
123 * @todo where does $disp_message and $disp_query come from???
125 if (! empty($disp_message)) {
126 if (! isset($disp_query)) {
127 $disp_query = null;
129 PMA_showMessage($disp_message, $disp_query);
133 * Displays top menu links
135 require_once './libraries/tbl_links.inc.php';
139 * Get the analysis of SHOW CREATE TABLE for this table
140 * @todo should be handled by class Table
142 $show_create_table = PMA_DBI_fetch_value(
143 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
144 0, 1);
145 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
146 unset($show_create_table);
149 * Get the list of the fields of the current table
151 PMA_DBI_select_db($db);
152 $table_fields = PMA_DBI_fetch_result('SHOW FIELDS FROM ' . PMA_backquote($table) . ';',
153 null, null, null, PMA_DBI_QUERY_STORE);
154 $rows = array();
155 if (isset($where_clause)) {
156 // when in edit mode load all selected rows from table
157 $insert_mode = false;
158 if (is_array($where_clause)) {
159 $where_clause_array = $where_clause;
160 } else {
161 $where_clause_array = array(0 => $where_clause);
164 $result = array();
165 $found_unique_key = false;
166 $where_clauses = array();
168 foreach ($where_clause_array as $key_id => $where_clause) {
169 $local_query = 'SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . ' WHERE ' . $where_clause . ';';
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 $where_clauses[$key_id] = str_replace('\\', '\\\\', $where_clause);
174 // No row returned
175 if (! $rows[$key_id]) {
176 unset($rows[$key_id], $where_clause_array[$key_id]);
177 PMA_showMessage($strEmptyResultSet, $local_query);
178 echo "\n";
179 require_once './libraries/footer.inc.php';
180 } else { // end if (no row returned)
181 $meta = PMA_DBI_get_fields_meta($result[$key_id]);
182 list($unique_condition, $tmp_clause_is_unique) = PMA_getUniqueCondition($result[$key_id], count($meta), $meta, $rows[$key_id], true);
183 if (! empty($unique_condition)) {
184 $found_unique_key = true;
186 unset($unique_condition, $tmp_clause_is_unique);
189 } else {
190 // no primary key given, just load first row - but what happens if table is empty?
191 $insert_mode = true;
192 $result = PMA_DBI_query('SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . ' LIMIT 1;', null, PMA_DBI_QUERY_STORE);
193 $rows = array_fill(0, $cfg['InsertRows'], false);
196 // <markus@noga.de>
197 // retrieve keys into foreign fields, if any
198 $foreigners = PMA_getForeigners($db, $table);
202 * Displays the form
204 // loic1: autocomplete feature of IE kills the "onchange" event handler and it
205 // must be replaced by the "onpropertychange" one in this case
206 $chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5 && PMA_USR_BROWSER_VER < 7)
207 ? 'onpropertychange'
208 : 'onchange';
209 // Had to put the URI because when hosted on an https server,
210 // some browsers send wrongly this form to the http server.
212 if ($cfg['CtrlArrowsMoving']) {
214 <!-- Set on key handler for moving using by Ctrl+arrows -->
215 <script src="./js/keyhandler.js" type="text/javascript"></script>
216 <script type="text/javascript">
217 //<![CDATA[
218 var switch_movement = 0;
219 document.onkeydown = onKeyDownArrowsHandler;
220 //]]>
221 </script>
222 <?php
225 $_form_params = array(
226 'db' => $db,
227 'table' => $table,
228 'goto' => $GLOBALS['goto'],
229 'err_url' => $err_url,
230 'sql_query' => $sql_query,
232 if (isset($where_clauses)) {
233 foreach ($where_clause_array as $key_id => $where_clause) {
234 $_form_params['where_clause[' . $key_id . ']'] = trim($where_clause);
237 if (isset($clause_is_unique)) {
238 $_form_params['clause_is_unique'] = $clause_is_unique;
242 <!-- Insert/Edit form -->
243 <form method="post" action="tbl_replace.php" name="insertForm" <?php if ($is_upload) { echo ' enctype="multipart/form-data"'; } ?>>
244 <?php
245 echo PMA_generate_common_hidden_inputs($_form_params);
247 $titles['Browse'] = PMA_getIcon('b_browse.png', $strBrowseForeignValues);
249 // Set if we passed the first timestamp field
250 $timestamp_seen = 0;
251 $fields_cnt = count($table_fields);
253 $tabindex = 0;
254 $tabindex_for_function = +3000;
255 $tabindex_for_null = +6000;
256 $tabindex_for_value = 0;
257 $o_rows = 0;
258 $biggest_max_file_size = 0;
260 // user can toggle the display of Function column
261 // (currently does not work for multi-edits)
262 $url_params['db'] = $db;
263 $url_params['table'] = $table;
264 if (isset($where_clause)) {
265 $url_params['where_clause'] = trim($where_clause);
267 if (! empty($sql_query)) {
268 $url_params['sql_query'] = $sql_query;
271 if (! $cfg['ShowFunctionFields']) {
272 $this_url_params = array_merge($url_params,
273 array('ShowFunctionFields' => 1, 'goto' => 'sql.php'));
274 echo $strShow . ' : <a href="tbl_change.php' . PMA_generate_common_url($this_url_params) . '">' . $strFunction . '</a>' . "\n";
277 foreach ($rows as $row_id => $vrow) {
278 if ($vrow === false) {
279 unset($vrow);
282 $jsvkey = $row_id;
283 $browse_foreigners_uri = '&amp;pk=' . $row_id;
284 $vkey = '[multi_edit][' . $jsvkey . ']';
286 $vresult = (isset($result) && is_array($result) && isset($result[$row_id]) ? $result[$row_id] : $result);
287 if ($insert_mode && $row_id > 0) {
288 echo '<input type="checkbox" checked="checked" name="insert_ignore_' . $row_id . '" id="insert_ignore_check_' . $row_id . '" />';
289 echo '<label for="insert_ignore_check_' . $row_id . '">' . $strIgnore . '</label><br />' . "\n";
292 <table>
293 <thead>
294 <tr>
295 <th><?php echo $strField; ?></th>
296 <th><?php echo $strType; ?></th>
297 <?php
298 if ($cfg['ShowFunctionFields']) {
299 $this_url_params = array_merge($url_params,
300 array('ShowFunctionFields' => 0, 'goto' => 'sql.php'));
301 echo ' <th><a href="tbl_change.php' . PMA_generate_common_url($this_url_params) . '" title="' . $strHide . '">' . $strFunction . '</a></th>' . "\n";
304 <th><?php echo $strNull; ?></th>
305 <th><?php echo $strValue; ?></th>
306 </tr>
307 </thead>
308 <tfoot>
309 <tr>
310 <th colspan="5" align="right" class="tblFooters">
311 <input type="submit" value="<?php echo $strGo; ?>" />
312 </th>
313 </tr>
314 </tfoot>
315 <tbody>
316 <?php
317 // Sets a multiplier used for input-field counts (as zero cannot be used, advance the counter plus one)
318 $m_rows = $o_rows + 1;
320 $odd_row = true;
321 for ($i = 0; $i < $fields_cnt; $i++) {
322 if (! isset($table_fields[$i]['processed'])) {
323 $table_fields[$i]['Field_html'] = htmlspecialchars($table_fields[$i]['Field']);
324 $table_fields[$i]['Field_md5'] = md5($table_fields[$i]['Field']);
325 // True_Type contains only the type (stops at first bracket)
326 $table_fields[$i]['True_Type'] = preg_replace('@\(.*@s', '', $table_fields[$i]['Type']);
328 // d a t e t i m e
330 // loic1: current date should not be set as default if the field is NULL
331 // for the current row
332 // lem9: but do not put here the current datetime if there is a default
333 // value (the real default value will be set in the
334 // Default value logic below)
336 // Note: (tested in MySQL 4.0.16): when lang is some UTF-8,
337 // $field['Default'] is not set if it contains NULL:
338 // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Extra] => [True_Type] => datetime)
339 // but, look what we get if we switch to iso: (Default is NULL)
340 // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Default] => [Extra] => [True_Type] => datetime)
341 // so I force a NULL into it (I don't think it's possible
342 // to have an empty default value for DATETIME)
343 // then, the "if" after this one will work
344 if ($table_fields[$i]['Type'] == 'datetime'
345 && ! isset($table_fields[$i]['Default'])
346 && isset($table_fields[$i]['Null'])
347 && $table_fields[$i]['Null'] == 'YES') {
348 $table_fields[$i]['Default'] = null;
351 $table_fields[$i]['len'] =
352 preg_match('@float|double@', $table_fields[$i]['Type']) ? 100 : -1;
355 if (isset($comments_map[$table_fields[$i]['Field']])) {
356 $table_fields[$i]['Field_title'] = '<span style="border-bottom: 1px dashed black;" title="'
357 . htmlspecialchars($comments_map[$table_fields[$i]['Field']]) . '">'
358 . $table_fields[$i]['Field_html'] . '</span>';
359 } else {
360 $table_fields[$i]['Field_title'] = $table_fields[$i]['Field_html'];
363 // The type column
364 $table_fields[$i]['is_binary'] = stristr($table_fields[$i]['Type'], 'binary');
365 $table_fields[$i]['is_blob'] = stristr($table_fields[$i]['Type'], 'blob');
366 $table_fields[$i]['is_char'] = stristr($table_fields[$i]['Type'], 'char');
367 $table_fields[$i]['first_timestamp'] = false;
368 switch ($table_fields[$i]['True_Type']) {
369 case 'set':
370 $table_fields[$i]['pma_type'] = 'set';
371 $table_fields[$i]['wrap'] = '';
372 break;
373 case 'enum':
374 $table_fields[$i]['pma_type'] = 'enum';
375 $table_fields[$i]['wrap'] = '';
376 break;
377 case 'timestamp':
378 if (!$timestamp_seen) { // can only occur once per table
379 $timestamp_seen = 1;
380 $table_fields[$i]['first_timestamp'] = true;
382 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
383 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
384 break;
386 default:
387 $table_fields[$i]['pma_type'] = $table_fields[$i]['Type'];
388 $table_fields[$i]['wrap'] = ' nowrap="nowrap"';
389 break;
392 $field = $table_fields[$i];
393 $extracted_fieldspec = PMA_extractFieldSpec($field['Type']);
395 if (-1 === $field['len']) {
396 $field['len'] = PMA_DBI_field_len($vresult, $i);
399 $unnullify_trigger = $chg_evt_handler . "=\"return unNullify('"
400 . PMA_escapeJsString($field['Field_md5']) . "', '"
401 . PMA_escapeJsString($jsvkey) . "')\"";
403 // Use an MD5 as an array index to avoid having special characters in the name atttibute (see bug #1746964 )
404 $field_name_appendix = $vkey . '[' . $field['Field_md5'] . ']';
405 $field_name_appendix_md5 = $field['Field_md5'] . $vkey . '[]';
408 if ($field['Type'] == 'datetime'
409 && ! isset($field['Default'])
410 && ! is_null($field['Default'])
411 && ($insert_mode || ! isset($vrow[$field['Field']]))) {
412 // INSERT case or
413 // UPDATE case with an NULL value
414 $vrow[$field['Field']] = date('Y-m-d H:i:s', time());
417 <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
418 <td <?php echo ($cfg['LongtextDoubleTextarea'] && strstr($field['True_Type'], 'longtext') ? 'rowspan="2"' : ''); ?> align="center">
419 <?php echo $field['Field_title']; ?>
420 <input type="hidden" name="fields_name<?php echo $field_name_appendix; ?>" value="<?php echo $field['Field_html']; ?>"/>
421 </td>
422 <td align="center"<?php echo $field['wrap']; ?>>
423 <?php echo $field['pma_type']; ?>
424 </td>
426 <?php
428 // Prepares the field value
429 $real_null_value = FALSE;
430 $special_chars_encoded = '';
431 if (isset($vrow)) {
432 if (is_null($vrow[$field['Field']])) {
433 $real_null_value = TRUE;
434 $vrow[$field['Field']] = '';
435 $special_chars = '';
436 $data = $vrow[$field['Field']];
437 } elseif ($field['True_Type'] == 'bit') {
438 $special_chars = PMA_printable_bit_value($vrow[$field['Field']], $extracted_fieldspec['spec_in_brackets']);
439 } else {
440 // loic1: special binary "characters"
441 if ($field['is_binary'] || ($field['is_blob'] && ! $cfg['ProtectBinary'])) {
442 if ($_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) {
443 $vrow[$field['Field']] = bin2hex($vrow[$field['Field']]);
444 $field['display_binary_as_hex'] = true;
445 } else {
446 $vrow[$field['Field']] = PMA_replace_binary_contents($vrow[$field['Field']]);
448 } // end if
449 $special_chars = htmlspecialchars($vrow[$field['Field']]);
451 //We need to duplicate the first \n or otherwise we will lose the first newline entered in a VARCHAR or TEXT column
452 $special_chars_encoded = PMA_duplicateFirstNewline($special_chars);
454 $data = $vrow[$field['Field']];
455 } // end if... else...
456 // loic1: if a timestamp field value is not included in an update
457 // statement MySQL auto-update it to the current timestamp
458 // lem9: however, things have changed since MySQL 4.1, so
459 // it's better to set a fields_prev in this situation
460 $backup_field = '<input type="hidden" name="fields_prev'
461 . $field_name_appendix . '" value="'
462 . htmlspecialchars($vrow[$field['Field']]) . '" />';
463 } else {
464 // (we are inserting)
465 // loic1: display default values
466 if (!isset($field['Default'])) {
467 $field['Default'] = '';
468 $real_null_value = TRUE;
469 $data = '';
470 } else {
471 $data = $field['Default'];
473 if ($field['True_Type'] == 'bit') {
474 $special_chars = PMA_convert_bit_default_value($field['Default']);
475 } else {
476 $special_chars = htmlspecialchars($field['Default']);
478 $backup_field = '';
479 $special_chars_encoded = PMA_duplicateFirstNewline($special_chars);
480 // this will select the UNHEX function while inserting
481 if (($field['is_binary'] || ($field['is_blob'] && ! $cfg['ProtectBinary'])) && $_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) {
482 $field['display_binary_as_hex'] = true;
486 $idindex = ($o_rows * $fields_cnt) + $i + 1;
487 $tabindex = (($idindex - 1) * 3) + 1;
489 // The function column
490 // -------------------
491 // Change by Bernard M. Piller <bernard@bmpsystems.com>
492 // We don't want binary data to be destroyed
493 // Note: from the MySQL manual: "BINARY doesn't affect how the column is
494 // stored or retrieved" so it does not mean that the contents is
495 // binary
496 if ($cfg['ShowFunctionFields']) {
497 if (($cfg['ProtectBinary'] && $field['is_blob'] && !$is_upload)
498 || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
499 echo ' <td align="center">' . $strBinary . '</td>' . "\n";
500 } elseif (strstr($field['True_Type'], 'enum') || strstr($field['True_Type'], 'set') || 'geometry' == $field['pma_type']) {
501 echo ' <td align="center">--</td>' . "\n";
502 } else {
504 <td>
505 <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">
506 <option></option>
507 <?php
508 $selected = '';
510 // garvin: Find the current type in the RestrictColumnTypes. Will result in 'FUNC_CHAR'
511 // or something similar. Then directly look up the entry in the RestrictFunctions array,
512 // which will then reveal the available dropdown options
513 if (isset($cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])])
514 && isset($cfg['RestrictFunctions'][$cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])]])) {
515 $current_func_type = $cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])];
516 $dropdown = $cfg['RestrictFunctions'][$current_func_type];
517 $default_function = $cfg['DefaultFunctions'][$current_func_type];
518 } else {
519 $dropdown = array();
520 $default_function = '';
523 $dropdown_built = array();
524 $op_spacing_needed = FALSE;
526 // what function defined as default?
527 // for the first timestamp we don't set the default function
528 // if there is a default value for the timestamp
529 // (not including CURRENT_TIMESTAMP)
530 // and the column does not have the
531 // ON UPDATE DEFAULT TIMESTAMP attribute.
533 if ($field['True_Type'] == 'timestamp'
534 && empty($field['Default'])
535 && empty($data)
536 && ! isset($analyzed_sql[0]['create_table_fields'][$field['Field']]['on_update_current_timestamp'])) {
537 $default_function = $cfg['DefaultFunctions']['first_timestamp'];
540 // For primary keys of type char(36) or varchar(36) UUID if the default function
541 // Only applies to insert mode, as it would silently trash data on updates.
542 if ($insert_mode
543 && $field['Key'] == 'PRI'
544 && ($field['Type'] == 'char(36)' || $field['Type'] == 'varchar(36)')
546 $default_function = $cfg['DefaultFunctions']['pk_char36'];
549 // this is set only when appropriate and is always true
550 if (isset($field['display_binary_as_hex'])) {
551 $default_function = 'UNHEX';
554 // garvin: loop on the dropdown array and print all available options for that field.
555 foreach ($dropdown as $each_dropdown){
556 echo '<option';
557 if ($default_function === $each_dropdown) {
558 echo ' selected="selected"';
560 echo '>' . $each_dropdown . '</option>' . "\n";
561 $dropdown_built[$each_dropdown] = 'TRUE';
562 $op_spacing_needed = TRUE;
565 // garvin: For compatibility's sake, do not let out all other functions. Instead
566 // print a separator (blank) and then show ALL functions which weren't shown
567 // yet.
568 $cnt_functions = count($cfg['Functions']);
569 for ($j = 0; $j < $cnt_functions; $j++) {
570 if (!isset($dropdown_built[$cfg['Functions'][$j]]) || $dropdown_built[$cfg['Functions'][$j]] != 'TRUE') {
571 // Is current function defined as default?
572 $selected = ($field['first_timestamp'] && $cfg['Functions'][$j] == $cfg['DefaultFunctions']['first_timestamp'])
573 || (!$field['first_timestamp'] && $cfg['Functions'][$j] == $default_function)
574 ? ' selected="selected"'
575 : '';
576 if ($op_spacing_needed == TRUE) {
577 echo ' ';
578 echo '<option value="">--------</option>' . "\n";
579 $op_spacing_needed = FALSE;
582 echo ' ';
583 echo '<option' . $selected . '>' . $cfg['Functions'][$j] . '</option>' . "\n";
585 } // end for
586 unset($selected);
588 </select>
589 </td>
590 <?php
592 } // end if ($cfg['ShowFunctionFields'])
595 // The null column
596 // ---------------
597 $foreignData = PMA_getForeignData($foreigners, $field['Field'], false, '', '');
598 echo ' <td>' . "\n";
599 if ($field['Null'] == 'YES') {
600 echo ' <input type="hidden" name="fields_null_prev' . $field_name_appendix . '"';
601 if ($real_null_value && !$field['first_timestamp']) {
602 echo ' value="on"';
604 echo ' />' . "\n";
606 if (!(($cfg['ProtectBinary'] && $field['is_blob']) || ($cfg['ProtectBinary'] == 'all' && $field['is_binary']))) {
608 echo ' <input type="checkbox" tabindex="' . ($tabindex + $tabindex_for_null) . '"'
609 . ' name="fields_null' . $field_name_appendix . '"';
610 if ($real_null_value && !$field['first_timestamp']) {
611 echo ' checked="checked"';
613 echo ' id="field_' . ($idindex) . '_2"';
614 $onclick = ' onclick="if (this.checked) {nullify(';
615 if (strstr($field['True_Type'], 'enum')) {
616 if (strlen($field['Type']) > 20) {
617 $onclick .= '1, ';
618 } else {
619 $onclick .= '2, ';
621 } elseif (strstr($field['True_Type'], 'set')) {
622 $onclick .= '3, ';
623 } elseif ($foreigners && isset($foreigners[$field['Field']]) && $foreignData['foreign_link'] == false) {
624 // foreign key in a drop-down
625 $onclick .= '4, ';
626 } elseif ($foreigners && isset($foreigners[$field['Field']]) && $foreignData['foreign_link'] == true) {
627 // foreign key with a browsing icon
628 $onclick .= '6, ';
629 } else {
630 $onclick .= '5, ';
632 $onclick .= '\'' . PMA_escapeJsString($field['Field_html']) . '\', \'' . $field['Field_md5'] . '\', \'' . PMA_escapeJsString($vkey) . '\'); this.checked = true}; return true" />' . "\n";
633 echo $onclick;
634 } else {
635 echo ' <input type="hidden" name="fields_null' . $field_name_appendix . '"';
636 if ($real_null_value && !$field['first_timestamp']) {
637 echo ' value="on"';
639 echo ' />' . "\n";
642 echo ' </td>' . "\n";
644 // The value column (depends on type)
645 // ----------------
646 // See bug #1667887 for the reason why we don't use the maxlength
647 // HTML attribute
649 echo ' <td>' . "\n";
650 if ($foreignData['foreign_link'] == true) {
651 echo $backup_field . "\n";
653 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
654 value="foreign" />
655 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
656 value="" id="field_<?php echo ($idindex); ?>_3A" />
657 <input type="text" name="field_<?php echo $field_name_appendix_md5; ?>"
658 class="textfield" <?php echo $unnullify_trigger; ?>
659 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
660 id="field_<?php echo ($idindex); ?>_3"
661 value="<?php echo htmlspecialchars($data); ?>" />
662 <script type="text/javascript">
663 //<![CDATA[
664 document.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes,resizable=yes\'); return false"');
665 document.write(' href="browse_foreigners.php?');
666 document.write('<?php echo PMA_generate_common_url($db, $table); ?>');
667 document.writeln('&amp;field=<?php echo PMA_escapeJsString(urlencode($field['Field']) . $browse_foreigners_uri); ?>">');
668 document.writeln('<?php echo str_replace("'", "\'", $titles['Browse']); ?></a>');
669 //]]>
670 </script>
671 <?php
672 } elseif (is_array($foreignData['disp_row'])) {
673 echo $backup_field . "\n";
675 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
676 value="foreign" />
677 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
678 value="" id="field_<?php echo $idindex; ?>_3A" />
679 <select name="field_<?php echo $field_name_appendix_md5; ?>"
680 <?php echo $unnullify_trigger; ?>
681 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
682 id="field_<?php echo ($idindex); ?>_3">
683 <?php echo PMA_foreignDropdown($foreignData['disp_row'], $foreignData['foreign_field'], $foreignData['foreign_display'], $data, $cfg['ForeignKeyMaxLimit']); ?>
684 </select>
685 <?php
686 // still needed? :
687 unset($foreignData['disp_row']);
688 } elseif ($cfg['LongtextDoubleTextarea'] && strstr($field['pma_type'], 'longtext')) {
690 &nbsp;</td>
691 </tr>
692 <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
693 <td colspan="5" align="right">
694 <?php echo $backup_field . "\n"; ?>
695 <textarea name="fields<?php echo $field_name_appendix; ?>"
696 rows="<?php echo ($cfg['TextareaRows']*2); ?>"
697 cols="<?php echo ($cfg['TextareaCols']*2); ?>"
698 dir="<?php echo $text_dir; ?>"
699 id="field_<?php echo ($idindex); ?>_3"
700 <?php echo $unnullify_trigger; ?>
701 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
702 ><?php echo $special_chars_encoded; ?></textarea>
703 <?php
704 } elseif (strstr($field['pma_type'], 'text')) {
705 echo $backup_field . "\n";
707 <textarea name="fields<?php echo $field_name_appendix; ?>"
708 rows="<?php echo $cfg['TextareaRows']; ?>"
709 cols="<?php echo $cfg['TextareaCols']; ?>"
710 dir="<?php echo $text_dir; ?>"
711 id="field_<?php echo ($idindex); ?>_3"
712 <?php echo $unnullify_trigger; ?>
713 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
714 ><?php echo $special_chars_encoded; ?></textarea>
715 <?php
716 echo "\n";
717 if (strlen($special_chars) > 32000) {
718 echo " </td>\n";
719 echo ' <td>' . $strTextAreaLength;
721 } elseif ($field['pma_type'] == 'enum') {
722 if (! isset($table_fields[$i]['values'])) {
723 $table_fields[$i]['values'] = array();
724 foreach ($extracted_fieldspec['enum_set_values'] as $val) {
725 // Removes automatic MySQL escape format
726 $val = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $val));
727 $table_fields[$i]['values'][] = array(
728 'plain' => $val,
729 'html' => htmlspecialchars($val),
733 $field_enum_values = $table_fields[$i]['values'];
735 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="enum" />
736 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
737 <?php
738 echo "\n" . ' ' . $backup_field . "\n";
740 // show dropdown or radio depend on length
741 if (strlen($field['Type']) > 20) {
743 <select name="field_<?php echo $field_name_appendix_md5; ?>"
744 <?php echo $unnullify_trigger; ?>
745 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
746 id="field_<?php echo ($idindex); ?>_3">
747 <option value="">&nbsp;</option>
748 <?php
749 echo "\n";
751 foreach ($field_enum_values as $enum_value) {
752 echo ' ';
753 echo '<option value="' . $enum_value['html'] . '"';
754 if ($data == $enum_value['plain']
755 || ($data == ''
756 && (! isset($where_clause) || $field['Null'] != 'YES')
757 && isset($field['Default'])
758 && $enum_value['plain'] == $field['Default'])) {
759 echo ' selected="selected"';
761 echo '>' . $enum_value['html'] . '</option>' . "\n";
762 } // end for
765 </select>
766 <?php
767 } else {
768 $j = 0;
769 foreach ($field_enum_values as $enum_value) {
770 echo ' ';
771 echo '<input type="radio" name="field_' . $field_name_appendix_md5 . '"';
772 echo ' value="' . $enum_value['html'] . '"';
773 echo ' id="field_' . ($idindex) . '_3_' . $j . '"';
774 echo $unnullify_trigger;
775 if ($data == $enum_value['plain']
776 || ($data == ''
777 && (! isset($where_clause) || $field['Null'] != 'YES')
778 && isset($field['Default'])
779 && $enum_value['plain'] == $field['Default'])) {
780 echo ' checked="checked"';
782 echo ' tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
783 echo '<label for="field_' . $idindex . '_3_' . $j . '">'
784 . $enum_value['html'] . '</label>' . "\n";
785 $j++;
786 } // end for
787 } // end else
788 } elseif ($field['pma_type'] == 'set') {
789 if (! isset($table_fields[$i]['values'])) {
790 $table_fields[$i]['values'] = array();
791 foreach ($extracted_fieldspec['enum_set_values'] as $val) {
792 $table_fields[$i]['values'][] = array(
793 'plain' => $val,
794 'html' => htmlspecialchars($val),
797 $table_fields[$i]['select_size'] = min(4, count($table_fields[$i]['values']));
799 $field_set_values = $table_fields[$i]['values'];
800 $select_size = $table_fields[$i]['select_size'];
802 $vset = array_flip(explode(',', $data));
803 echo $backup_field . "\n";
805 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="set" />
806 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
807 <select name="field_<?php echo $field_name_appendix_md5; ?>"
808 size="<?php echo $select_size; ?>"
809 multiple="multiple" <?php echo $unnullify_trigger; ?>
810 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
811 id="field_<?php echo ($idindex); ?>_3">
812 <?php
813 foreach ($field_set_values as $field_set_value) {
814 echo ' ';
815 echo '<option value="' . $field_set_value['html'] . '"';
816 if (isset($vset[$field_set_value['plain']])) {
817 echo ' selected="selected"';
819 echo '>' . $field_set_value['html'] . '</option>' . "\n";
820 } // end for
822 </select>
823 <?php
825 // Change by Bernard M. Piller <bernard@bmpsystems.com>
826 // We don't want binary data destroyed
827 elseif ($field['is_binary'] || $field['is_blob']) {
828 if (($cfg['ProtectBinary'] && $field['is_blob'])
829 || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
830 echo "\n";
831 // rajk - for blobstreaming
832 $bs_reference_exists = FALSE;
834 if (isset ($tbl_type) && strlen ($tbl_type) > 0)
836 // load PMA_Config
837 $PMA_Config = $_SESSION['PMA_Config'];
839 if (!empty($PMA_Config))
841 $requiredTblType = $PMA_Config->get('PBXT_NAME');
843 if ($requiredTblType == strtolower ($tbl_type))
845 $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST');
847 // check if blobstreaming plugins exist
848 if ($pluginsExist)
850 $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES');
852 if (!empty($bs_tables) && strlen($db) > 0)
854 $bs_tables = $bs_tables[$db];
856 if (isset($bs_tables))
858 $allBSTablesExist = TRUE;
860 foreach ($bs_tables as $table_key=>$bs_tbl)
861 if (!$bs_tables[$table_key]['Exists'])
863 $allBSTablesExist = FALSE;
864 break;
867 if ($allBSTablesExist)
868 $bs_reference_exists = PMA_BS_ReferenceExists($data, $db);
869 } // end if (isset($bs_tables))
870 } // end if (!empty($bs_tables) && strlen($db) > 0)
871 } // end if ($pluginsExist)
872 } // end if ($requiredTblType == strtolower ($tbl_type))
873 } // end if (!empty($PMA_Config))
874 } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0)
876 if ($bs_reference_exists)
878 echo '<input type="hidden" name="remove_blob_ref_' . $field['Field_md5'] . $vkey . '" value="' . $data . '" />';
879 echo '<input type="checkbox" name="remove_blob_repo_' . $field['Field_md5'] . $vkey . '" /> ' . $strBLOBRepositoryRemove . "<br />";
880 echo PMA_BS_CreateReferenceLink($data, $db);
881 echo "<br />";
883 else
885 echo $strBinaryDoNotEdit;
886 if (isset($data)) {
887 $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1);
888 echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')';
889 unset($data_size);
891 echo "\n";
892 } // end if ($bs_reference_exists)
894 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="protected" />
895 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
896 <?php
897 } elseif ($field['is_blob']) {
898 echo "\n";
899 echo $backup_field . "\n";
901 <textarea name="fields<?php echo $field_name_appendix; ?>"
902 rows="<?php echo $cfg['TextareaRows']; ?>"
903 cols="<?php echo $cfg['TextareaCols']; ?>"
904 dir="<?php echo $text_dir; ?>"
905 id="field_<?php echo ($idindex); ?>_3"
906 <?php echo $unnullify_trigger; ?>
907 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
908 ><?php echo $special_chars_encoded; ?></textarea>
909 <?php
911 } else {
912 // field size should be at least 4 and max 40
913 $fieldsize = min(max($field['len'], 4), 40);
914 echo "\n";
915 echo $backup_field . "\n";
917 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
918 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
919 class="textfield" <?php echo $unnullify_trigger; ?>
920 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
921 id="field_<?php echo ($idindex); ?>_3" />
922 <?php
923 } // end if...elseif...else
925 // Upload choice (only for BLOBs because the binary
926 // attribute does not imply binary contents)
927 // (displayed whatever value the ProtectBinary has)
929 if ($is_upload && $field['is_blob']) {
930 // added by rajk
931 // check if field type is of longblob
932 if ($field['pma_type'] == "longblob")
934 if (isset ($tbl_type) && strlen ($tbl_type) > 0)
936 // load PMA Config
937 $PMA_Config = $_SESSION['PMA_Config'];
939 // is PMA_Config's data loaded? continue only if it is
940 if (!empty($PMA_Config))
942 $requiredTblType = $PMA_Config->get('PBXT_NAME');
944 if ($requiredTblType == strtolower ($tbl_type))
946 $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST');
948 // check if blobstreaming plugins exist
949 if ($pluginsExist)
951 $curlExists = $PMA_Config->get('CURL_EXISTS');
953 // check if CURL exists
954 if ($curlExists)
956 $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES');
958 // check for BLOBStreamable databases and if current database name is provided
959 if (!empty($bs_tables) && strlen($db) > 0)
961 $bs_tables = $bs_tables[$db];
963 // check if reference to BLOBStreaming tables exists
964 if (isset($bs_tables))
966 $allBSTablesExist = TRUE;
968 foreach ($bs_tables as $table_key=>$bs_tbl)
969 if (!$bs_tables[$table_key]['Exists'])
971 $allBSTablesExist = FALSE;
972 break;
975 // check if necessary BLOBStreaming tables exist
976 if ($allBSTablesExist)
978 echo '<br />';
979 echo '<input type="checkbox" name="upload_blob_repo_' . $field['Field_md5'] . $vkey . '" /> ' . $strBLOBRepositoryUpload;
980 } // end if ($allBSTablesExist)
981 } // end if (isset($bs_tables)
982 } // end if (!empty($bs_tables) && strlen ($db) > 0)
983 } // end if ($curlExists)
984 } // end if ($pluginsExist)
985 } // end if ($requiredTblType == strtolower ($tbl_type))
986 } // end if (!empty($PMA_Config))
987 } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0)
990 echo '<br />';
991 echo '<input type="file" name="fields_upload_' . $field['Field_md5'] . $vkey . '" class="textfield" id="field_' . $idindex . '_3" size="10" />&nbsp;';
993 // find maximum upload size, based on field type
995 * @todo with functions this is not so easy, as you can basically
996 * process any data with function like MD5
998 $max_field_sizes = array(
999 'tinyblob' => '256',
1000 'blob' => '65536',
1001 'mediumblob' => '16777216',
1002 'longblob' => '4294967296'); // yeah, really
1004 $this_field_max_size = $max_upload_size; // from PHP max
1005 if ($this_field_max_size > $max_field_sizes[$field['pma_type']]) {
1006 $this_field_max_size = $max_field_sizes[$field['pma_type']];
1008 echo PMA_displayMaximumUploadSize($this_field_max_size) . "\n";
1009 // do not generate here the MAX_FILE_SIZE, because we should
1010 // put only one in the form to accommodate the biggest field
1011 if ($this_field_max_size > $biggest_max_file_size) {
1012 $biggest_max_file_size = $this_field_max_size;
1016 if (!empty($cfg['UploadDir'])) {
1017 $files = PMA_getFileSelectOptions(PMA_userDir($cfg['UploadDir']));
1018 if ($files === FALSE) {
1019 echo ' <font color="red">' . $strError . '</font><br />' . "\n";
1020 echo ' ' . $strWebServerUploadDirectoryError . "\n";
1021 } elseif (!empty($files)) {
1022 echo "<br />\n";
1023 echo ' <i>' . $strOr . '</i>' . ' ' . $strWebServerUploadDirectory . ':<br />' . "\n";
1024 echo ' <select size="1" name="fields_uploadlocal_' . $field['Field_md5'] . $vkey . '">' . "\n";
1025 echo ' <option value="" selected="selected"></option>' . "\n";
1026 echo $files;
1027 echo ' </select>' . "\n";
1029 } // end if (web-server upload directory)
1030 } // end elseif (binary or blob)
1032 elseif ('geometry' == $field['pma_type']) {
1033 // ignore this column to avoid changing it
1035 else {
1036 // field size should be at least 4 and max 40
1037 $fieldsize = min(max($field['len'], 4), 40);
1038 echo $backup_field . "\n";
1039 if ($field['is_char'] && ($cfg['CharEditing'] == 'textarea' || strpos($data, "\n") !== FALSE)) {
1040 echo "\n";
1042 <textarea name="fields<?php echo $field_name_appendix; ?>"
1043 rows="<?php echo $cfg['CharTextareaRows']; ?>"
1044 cols="<?php echo $cfg['CharTextareaCols']; ?>"
1045 dir="<?php echo $text_dir; ?>"
1046 id="field_<?php echo ($idindex); ?>_3"
1047 <?php echo $unnullify_trigger; ?>
1048 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
1049 ><?php echo $special_chars_encoded; ?></textarea>
1050 <?php
1051 } else {
1053 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
1054 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
1055 class="textfield" <?php echo $unnullify_trigger; ?>
1056 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
1057 id="field_<?php echo ($idindex); ?>_3" />
1058 <?php
1059 if ($field['Extra'] == 'auto_increment') {
1061 <input type="hidden" name="auto_increment<?php echo $field_name_appendix; ?>" value="1" />
1062 <?php
1063 } // end if
1064 if (substr($field['pma_type'], 0, 9) == 'timestamp') {
1066 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="timestamp" />
1067 <?php
1069 if ($field['True_Type'] == 'bit') {
1071 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="bit" />
1072 <?php
1074 if ($field['pma_type'] == 'date' || $field['pma_type'] == 'datetime' || substr($field['pma_type'], 0, 9) == 'timestamp') {
1075 // the _3 suffix points to the date field
1076 // the _2 suffix points to the corresponding NULL checkbox
1078 <script type="text/javascript">
1079 //<![CDATA[
1080 document.write('<a title="<?php echo $strCalendar;?>"');
1081 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); ?>\', \'field_<?php echo ($idindex); ?>_2\')">');
1082 document.write('<img class="calendar"');
1083 document.write(' src="<?php echo $pmaThemeImage; ?>b_calendar.png"');
1084 document.write(' alt="<?php echo $strCalendar; ?>"/></a>');
1085 //]]>
1086 </script>
1087 <?php
1092 </td>
1093 </tr>
1094 <?php
1095 $odd_row = !$odd_row;
1096 } // end for
1097 $o_rows++;
1098 echo ' </tbody></table><br />';
1099 } // end foreach on multi-edit
1101 <br />
1103 <fieldset>
1104 <table border="0" cellpadding="5" cellspacing="0">
1105 <tr>
1106 <td valign="middle" nowrap="nowrap">
1107 <select name="submit_type" tabindex="<?php echo ($tabindex + $tabindex_for_value + 1); ?>">
1108 <?php
1109 if (isset($where_clause)) {
1111 <option value="<?php echo $strSave; ?>"><?php echo $strSave; ?></option>
1112 <?php
1115 <option value="<?php echo $strInsertAsNewRow; ?>"><?php echo $strInsertAsNewRow; ?></option>
1116 </select>
1117 <?php
1118 echo "\n";
1120 if (!isset($after_insert)) {
1121 $after_insert = 'back';
1124 </td>
1125 <td valign="middle">
1126 &nbsp;&nbsp;&nbsp;<strong><?php echo $strAndThen; ?></strong>&nbsp;&nbsp;&nbsp;
1127 </td>
1128 <td valign="middle" nowrap="nowrap">
1129 <select name="after_insert">
1130 <option value="back" <?php echo ($after_insert == 'back' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertBack; ?></option>
1131 <option value="new_insert" <?php echo ($after_insert == 'new_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNewInsert; ?></option>
1132 <?php
1133 if (isset($where_clause)) {
1135 <option value="same_insert" <?php echo ($after_insert == 'same_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertSame; ?></option>
1136 <?php
1137 // If we have just numeric primary key, we can also edit next
1138 // in 2.8.2, we were looking for `field_name` = numeric_value
1139 //if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $where_clause)) {
1140 // in 2.9.0, we are looking for `table_name`.`field_name` = numeric_value
1141 if ($found_unique_key && preg_match('@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', $where_clause)) {
1143 <option value="edit_next" <?php echo ($after_insert == 'edit_next' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNext; ?></option>
1144 <?php
1148 </select>
1149 </td>
1150 </tr>
1152 <tr>
1153 <td>
1154 <?php echo PMA_showHint($strUseTabKey); ?>
1155 </td>
1156 <td colspan="3" align="right" valign="middle">
1157 <input type="submit" value="<?php echo $strGo; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 6); ?>" id="buttonYes" />
1158 <input type="reset" value="<?php echo $strReset; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 7); ?>" />
1159 </td>
1160 </tr>
1161 </table>
1162 </fieldset>
1163 <?php if ($biggest_max_file_size > 0) {
1164 echo ' ' . PMA_generateHiddenMaxFileSize($biggest_max_file_size) . "\n";
1165 } ?>
1166 </form>
1167 <?php
1168 if ($insert_mode) {
1170 <!-- Restart insertion form -->
1171 <form method="post" action="tbl_replace.php" name="restartForm" >
1172 <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
1173 <input type="hidden" name="goto" value="<?php echo htmlspecialchars($GLOBALS['goto']); ?>" />
1174 <input type="hidden" name="err_url" value="<?php echo htmlspecialchars($err_url); ?>" />
1175 <input type="hidden" name="sql_query" value="<?php echo htmlspecialchars($sql_query); ?>" />
1176 <?php
1177 if (isset($where_clauses)) {
1178 foreach ($where_clause_array as $key_id => $where_clause) {
1179 echo '<input type="hidden" name="where_clause[' . $key_id . ']" value="' . htmlspecialchars(trim($where_clause)) . '" />'. "\n";
1182 $tmp = '<select name="insert_rows" id="insert_rows" onchange="this.form.submit();" >' . "\n";
1183 $option_values = array(1,2,5,10,15,20,30,40);
1184 foreach ($option_values as $value) {
1185 $tmp .= '<option value="' . $value . '"';
1186 if ($value == $cfg['InsertRows']) {
1187 $tmp .= ' selected="selected"';
1189 $tmp .= '>' . $value . '</option>' . "\n";
1191 $tmp .= '</select>' . "\n";
1192 echo "\n" . sprintf($strRestartInsertion, $tmp);
1193 unset($tmp);
1194 echo '<noscript><input type="submit" value="' . $strGo . '" /></noscript>' . "\n";
1195 echo '</form>' . "\n";
1199 * Displays the footer
1201 require_once './libraries/footer.inc.php';