bug #2042032 Cannot detect PmaAbsoluteUri correctly on Windows
[phpmyadmin/madhuracj.git] / tbl_change.php
blobc2fb93aa97f78f40cf8dc8d2658d6c42ce655b8e
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 // On a BLOB that can have a NULL value, the is_null() returns
433 // true if it has no content but for me this is different than
434 // having been set explicitely to NULL so I put an exception here
435 if (! $field['is_blob'] && is_null($vrow[$field['Field']])) {
436 $real_null_value = TRUE;
437 $vrow[$field['Field']] = '';
438 $special_chars = '';
439 $data = $vrow[$field['Field']];
440 } elseif ($field['True_Type'] == 'bit') {
441 $special_chars = PMA_printable_bit_value($vrow[$field['Field']], $extracted_fieldspec['spec_in_brackets']);
442 } else {
443 // loic1: special binary "characters"
444 if ($field['is_binary'] || $field['is_blob']) {
445 if ($_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) {
446 $vrow[$field['Field']] = bin2hex($vrow[$field['Field']]);
447 $field['display_binary_as_hex'] = true;
448 } else {
449 $vrow[$field['Field']] = PMA_replace_binary_contents($vrow[$field['Field']]);
451 } // end if
452 $special_chars = htmlspecialchars($vrow[$field['Field']]);
454 //We need to duplicate the first \n or otherwise we will lose the first newline entered in a VARCHAR or TEXT column
455 $special_chars_encoded = PMA_duplicateFirstNewline($special_chars);
457 $data = $vrow[$field['Field']];
458 } // end if... else...
459 // loic1: if a timestamp field value is not included in an update
460 // statement MySQL auto-update it to the current timestamp
461 // lem9: however, things have changed since MySQL 4.1, so
462 // it's better to set a fields_prev in this situation
463 $backup_field = '<input type="hidden" name="fields_prev'
464 . $field_name_appendix . '" value="'
465 . htmlspecialchars($vrow[$field['Field']]) . '" />';
466 } else {
467 // loic1: display default values
468 if (!isset($field['Default'])) {
469 $field['Default'] = '';
470 $real_null_value = TRUE;
471 $data = '';
472 } else {
473 $data = $field['Default'];
475 if ($field['True_Type'] == 'bit') {
476 $special_chars = PMA_convert_bit_default_value($field['Default']);
477 } else {
478 $special_chars = htmlspecialchars($field['Default']);
480 $backup_field = '';
481 $special_chars_encoded = PMA_duplicateFirstNewline($special_chars);
484 $idindex = ($o_rows * $fields_cnt) + $i + 1;
485 $tabindex = (($idindex - 1) * 3) + 1;
487 // The function column
488 // -------------------
489 // Change by Bernard M. Piller <bernard@bmpsystems.com>
490 // We don't want binary data to be destroyed
491 // Note: from the MySQL manual: "BINARY doesn't affect how the column is
492 // stored or retrieved" so it does not mean that the contents is
493 // binary
494 if ($cfg['ShowFunctionFields']) {
495 if (($cfg['ProtectBinary'] && $field['is_blob'] && !$is_upload)
496 || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
497 echo ' <td align="center">' . $strBinary . '</td>' . "\n";
498 } elseif (strstr($field['True_Type'], 'enum') || strstr($field['True_Type'], 'set')) {
499 echo ' <td align="center">--</td>' . "\n";
500 } else {
502 <td>
503 <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">
504 <option></option>
505 <?php
506 $selected = '';
508 // garvin: Find the current type in the RestrictColumnTypes. Will result in 'FUNC_CHAR'
509 // or something similar. Then directly look up the entry in the RestrictFunctions array,
510 // which will then reveal the available dropdown options
511 if (isset($cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])])
512 && isset($cfg['RestrictFunctions'][$cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])]])) {
513 $current_func_type = $cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])];
514 $dropdown = $cfg['RestrictFunctions'][$current_func_type];
515 $default_function = $cfg['DefaultFunctions'][$current_func_type];
516 } else {
517 $dropdown = array();
518 $default_function = '';
521 $dropdown_built = array();
522 $op_spacing_needed = FALSE;
524 // what function defined as default?
525 // for the first timestamp we don't set the default function
526 // if there is a default value for the timestamp
527 // (not including CURRENT_TIMESTAMP)
528 // and the column does not have the
529 // ON UPDATE DEFAULT TIMESTAMP attribute.
531 if ($field['True_Type'] == 'timestamp'
532 && empty($field['Default'])
533 && ! isset($analyzed_sql[0]['create_table_fields'][$field['Field']]['on_update_current_timestamp'])) {
534 $default_function = $cfg['DefaultFunctions']['first_timestamp'];
537 // For primary keys of type char(36) or varchar(36) UUID if the default function
538 // Only applies to insert mode, as it would silently trash data on updates.
539 if ($insert_mode
540 && $field['Key'] == 'PRI'
541 && ($field['Type'] == 'char(36)' || $field['Type'] == 'varchar(36)')
543 $default_function = $cfg['DefaultFunctions']['pk_char36'];
546 // this is set only when appropriate and is always true
547 if (isset($field['display_binary_as_hex'])) {
548 $default_function = 'UNHEX';
551 // garvin: loop on the dropdown array and print all available options for that field.
552 foreach ($dropdown as $each_dropdown){
553 echo '<option';
554 if ($default_function === $each_dropdown) {
555 echo ' selected="selected"';
557 echo '>' . $each_dropdown . '</option>' . "\n";
558 $dropdown_built[$each_dropdown] = 'TRUE';
559 $op_spacing_needed = TRUE;
562 // garvin: For compatibility's sake, do not let out all other functions. Instead
563 // print a separator (blank) and then show ALL functions which weren't shown
564 // yet.
565 $cnt_functions = count($cfg['Functions']);
566 for ($j = 0; $j < $cnt_functions; $j++) {
567 if (!isset($dropdown_built[$cfg['Functions'][$j]]) || $dropdown_built[$cfg['Functions'][$j]] != 'TRUE') {
568 // Is current function defined as default?
569 $selected = ($field['first_timestamp'] && $cfg['Functions'][$j] == $cfg['DefaultFunctions']['first_timestamp'])
570 || (!$field['first_timestamp'] && $cfg['Functions'][$j] == $default_function)
571 ? ' selected="selected"'
572 : '';
573 if ($op_spacing_needed == TRUE) {
574 echo ' ';
575 echo '<option value="">--------</option>' . "\n";
576 $op_spacing_needed = FALSE;
579 echo ' ';
580 echo '<option' . $selected . '>' . $cfg['Functions'][$j] . '</option>' . "\n";
582 } // end for
583 unset($selected);
585 </select>
586 </td>
587 <?php
589 } // end if ($cfg['ShowFunctionFields'])
592 // The null column
593 // ---------------
594 $foreignData = PMA_getForeignData($foreigners, $field['Field'], false, '', '');
595 echo ' <td>' . "\n";
596 if ($field['Null'] == 'YES') {
597 echo ' <input type="hidden" name="fields_null_prev' . $field_name_appendix . '"';
598 if ($real_null_value && !$field['first_timestamp']) {
599 echo ' value="on"';
601 echo ' />' . "\n";
603 if (!(($cfg['ProtectBinary'] && $field['is_blob']) || ($cfg['ProtectBinary'] == 'all' && $field['is_binary']))) {
605 echo ' <input type="checkbox" tabindex="' . ($tabindex + $tabindex_for_null) . '"'
606 . ' name="fields_null' . $field_name_appendix . '"';
607 if ($real_null_value && !$field['first_timestamp']) {
608 echo ' checked="checked"';
610 echo ' id="field_' . ($idindex) . '_2"';
611 $onclick = ' onclick="if (this.checked) {nullify(';
612 if (strstr($field['True_Type'], 'enum')) {
613 if (strlen($field['Type']) > 20) {
614 $onclick .= '1, ';
615 } else {
616 $onclick .= '2, ';
618 } elseif (strstr($field['True_Type'], 'set')) {
619 $onclick .= '3, ';
620 } elseif ($foreigners && isset($foreigners[$field['Field']]) && $foreignData['foreign_link'] == false) {
621 // foreign key in a drop-down
622 $onclick .= '4, ';
623 } elseif ($foreigners && isset($foreigners[$field['Field']]) && $foreignData['foreign_link'] == true) {
624 // foreign key with a browsing icon
625 $onclick .= '6, ';
626 } else {
627 $onclick .= '5, ';
629 $onclick .= '\'' . PMA_escapeJsString($field['Field_html']) . '\', \'' . $field['Field_md5'] . '\', \'' . PMA_escapeJsString($vkey) . '\'); this.checked = true}; return true" />' . "\n";
630 echo $onclick;
631 } else {
632 echo ' <input type="hidden" name="fields_null' . $field_name_appendix . '"';
633 if ($real_null_value && !$field['first_timestamp']) {
634 echo ' value="on"';
636 echo ' />' . "\n";
639 echo ' </td>' . "\n";
641 // The value column (depends on type)
642 // ----------------
643 // See bug #1667887 for the reason why we don't use the maxlength
644 // HTML attribute
646 echo ' <td>' . "\n";
647 if ($foreignData['foreign_link'] == true) {
648 echo $backup_field . "\n";
650 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
651 value="foreign" />
652 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
653 value="" id="field_<?php echo ($idindex); ?>_3A" />
654 <input type="text" name="field_<?php echo $field_name_appendix_md5; ?>"
655 class="textfield" <?php echo $unnullify_trigger; ?>
656 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
657 id="field_<?php echo ($idindex); ?>_3"
658 value="<?php echo htmlspecialchars($data); ?>" />
659 <script type="text/javascript">
660 //<![CDATA[
661 document.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes,resizable=yes\'); return false"');
662 document.write(' href="browse_foreigners.php?');
663 document.write('<?php echo PMA_generate_common_url($db, $table); ?>');
664 document.writeln('&amp;field=<?php echo PMA_escapeJsString(urlencode($field['Field']) . $browse_foreigners_uri); ?>">');
665 document.writeln('<?php echo str_replace("'", "\'", $titles['Browse']); ?></a>');
666 //]]>
667 </script>
668 <?php
669 } elseif (is_array($foreignData['disp_row'])) {
670 echo $backup_field . "\n";
672 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>"
673 value="foreign" />
674 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>"
675 value="" id="field_<?php echo $idindex; ?>_3A" />
676 <select name="field_<?php echo $field_name_appendix_md5; ?>"
677 <?php echo $unnullify_trigger; ?>
678 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
679 id="field_<?php echo ($idindex); ?>_3">
680 <?php echo PMA_foreignDropdown($foreignData['disp_row'], $foreignData['foreign_field'], $foreignData['foreign_display'], $data, $cfg['ForeignKeyMaxLimit']); ?>
681 </select>
682 <?php
683 // still needed? :
684 unset($foreignData['disp_row']);
685 } elseif ($cfg['LongtextDoubleTextarea'] && strstr($field['pma_type'], 'longtext')) {
687 &nbsp;</td>
688 </tr>
689 <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
690 <td colspan="5" align="right">
691 <?php echo $backup_field . "\n"; ?>
692 <textarea name="fields<?php echo $field_name_appendix; ?>"
693 rows="<?php echo ($cfg['TextareaRows']*2); ?>"
694 cols="<?php echo ($cfg['TextareaCols']*2); ?>"
695 dir="<?php echo $text_dir; ?>"
696 id="field_<?php echo ($idindex); ?>_3"
697 <?php echo $unnullify_trigger; ?>
698 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
699 ><?php echo $special_chars_encoded; ?></textarea>
700 <?php
701 } elseif (strstr($field['pma_type'], 'text')) {
702 echo $backup_field . "\n";
704 <textarea name="fields<?php echo $field_name_appendix; ?>"
705 rows="<?php echo $cfg['TextareaRows']; ?>"
706 cols="<?php echo $cfg['TextareaCols']; ?>"
707 dir="<?php echo $text_dir; ?>"
708 id="field_<?php echo ($idindex); ?>_3"
709 <?php echo $unnullify_trigger; ?>
710 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
711 ><?php echo $special_chars_encoded; ?></textarea>
712 <?php
713 echo "\n";
714 if (strlen($special_chars) > 32000) {
715 echo " </td>\n";
716 echo ' <td>' . $strTextAreaLength;
718 } elseif ($field['pma_type'] == 'enum') {
719 if (! isset($table_fields[$i]['values'])) {
720 $table_fields[$i]['values'] = array();
721 foreach ($extracted_fieldspec['enum_set_values'] as $val) {
722 // Removes automatic MySQL escape format
723 $val = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $val));
724 $table_fields[$i]['values'][] = array(
725 'plain' => $val,
726 'html' => htmlspecialchars($val),
730 $field_enum_values = $table_fields[$i]['values'];
732 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="enum" />
733 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
734 <?php
735 echo "\n" . ' ' . $backup_field . "\n";
737 // show dropdown or radio depend on length
738 if (strlen($field['Type']) > 20) {
740 <select name="field_<?php echo $field_name_appendix_md5; ?>"
741 <?php echo $unnullify_trigger; ?>
742 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
743 id="field_<?php echo ($idindex); ?>_3">
744 <option value="">&nbsp;</option>
745 <?php
746 echo "\n";
748 foreach ($field_enum_values as $enum_value) {
749 echo ' ';
750 echo '<option value="' . $enum_value['html'] . '"';
751 if ($data == $enum_value['plain']
752 || ($data == ''
753 && (! isset($where_clause) || $field['Null'] != 'YES')
754 && isset($field['Default'])
755 && $enum_value['plain'] == $field['Default'])) {
756 echo ' selected="selected"';
758 echo '>' . $enum_value['html'] . '</option>' . "\n";
759 } // end for
762 </select>
763 <?php
764 } else {
765 $j = 0;
766 foreach ($field_enum_values as $enum_value) {
767 echo ' ';
768 echo '<input type="radio" name="field_' . $field_name_appendix_md5 . '"';
769 echo ' value="' . $enum_value['html'] . '"';
770 echo ' id="field_' . ($idindex) . '_3_' . $j . '"';
771 echo $unnullify_trigger;
772 if ($data == $enum_value['plain']
773 || ($data == ''
774 && (! isset($where_clause) || $field['Null'] != 'YES')
775 && isset($field['Default'])
776 && $enum_value['plain'] == $field['Default'])) {
777 echo ' checked="checked"';
779 echo ' tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
780 echo '<label for="field_' . $idindex . '_3_' . $j . '">'
781 . $enum_value['html'] . '</label>' . "\n";
782 $j++;
783 } // end for
784 } // end else
785 } elseif ($field['pma_type'] == 'set') {
786 if (! isset($table_fields[$i]['values'])) {
787 $table_fields[$i]['values'] = array();
788 foreach ($extracted_fieldspec['enum_set_values'] as $val) {
789 $table_fields[$i]['values'][] = array(
790 'plain' => $val,
791 'html' => htmlspecialchars($val),
794 $table_fields[$i]['select_size'] = min(4, count($table_fields[$i]['values']));
796 $field_set_values = $table_fields[$i]['values'];
797 $select_size = $table_fields[$i]['select_size'];
799 $vset = array_flip(explode(',', $data));
800 echo $backup_field . "\n";
802 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="set" />
803 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
804 <select name="field_<?php echo $field_name_appendix_md5; ?>"
805 size="<?php echo $select_size; ?>"
806 multiple="multiple" <?php echo $unnullify_trigger; ?>
807 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
808 id="field_<?php echo ($idindex); ?>_3">
809 <?php
810 foreach ($field_set_values as $field_set_value) {
811 echo ' ';
812 echo '<option value="' . $field_set_value['html'] . '"';
813 if (isset($vset[$field_set_value['plain']])) {
814 echo ' selected="selected"';
816 echo '>' . $field_set_value['html'] . '</option>' . "\n";
817 } // end for
819 </select>
820 <?php
822 // Change by Bernard M. Piller <bernard@bmpsystems.com>
823 // We don't want binary data destroyed
824 elseif ($field['is_binary'] || $field['is_blob']) {
825 if (($cfg['ProtectBinary'] && $field['is_blob'])
826 || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) {
827 echo "\n";
828 // rajk - for blobstreaming
829 $bs_reference_exists = FALSE;
831 if (isset ($tbl_type) && strlen ($tbl_type) > 0)
833 // load PMA_Config
834 $PMA_Config = $_SESSION['PMA_Config'];
836 if (!empty($PMA_Config))
838 $requiredTblType = $PMA_Config->get('PBXT_NAME');
840 if ($requiredTblType == strtolower ($tbl_type))
842 $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST');
844 // check if blobstreaming plugins exist
845 if ($pluginsExist)
847 $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES');
849 if (!empty($bs_tables) && strlen($db) > 0)
851 $bs_tables = $bs_tables[$db];
853 if (isset($bs_tables))
855 $allBSTablesExist = TRUE;
857 foreach ($bs_tables as $table_key=>$bs_tbl)
858 if (!$bs_tables[$table_key]['Exists'])
860 $allBSTablesExist = FALSE;
861 break;
864 if ($allBSTablesExist)
865 $bs_reference_exists = PMA_BS_ReferenceExists($data, $db);
866 } // end if (isset($bs_tables))
867 } // end if (!empty($bs_tables) && strlen($db) > 0)
868 } // end if ($pluginsExist)
869 } // end if ($requiredTblType == strtolower ($tbl_type))
870 } // end if (!empty($PMA_Config))
871 } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0)
873 if ($bs_reference_exists)
875 echo '<input type="hidden" name="remove_blob_ref_' . $field['Field_md5'] . $vkey . '" value="' . $data . '" />';
876 echo '<input type="checkbox" name="remove_blob_repo_' . $field['Field_md5'] . $vkey . '" /> ' . $strBLOBRepositoryRemove . "<br />";
877 echo PMA_BS_CreateReferenceLink($data, $db);
878 echo "<br />";
880 else
882 echo $strBinaryDoNotEdit;
883 if (isset($data)) {
884 $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1);
885 echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')';
886 unset($data_size);
888 echo "\n";
889 } // end if ($bs_reference_exists)
891 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="protected" />
892 <input type="hidden" name="fields<?php echo $field_name_appendix; ?>" value="" />
893 <?php
894 } elseif ($field['is_blob']) {
895 echo "\n";
896 echo $backup_field . "\n";
898 <textarea name="fields<?php echo $field_name_appendix; ?>"
899 rows="<?php echo $cfg['TextareaRows']; ?>"
900 cols="<?php echo $cfg['TextareaCols']; ?>"
901 dir="<?php echo $text_dir; ?>"
902 id="field_<?php echo ($idindex); ?>_3"
903 <?php echo $unnullify_trigger; ?>
904 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
905 ><?php echo $special_chars_encoded; ?></textarea>
906 <?php
908 } else {
909 // field size should be at least 4 and max 40
910 $fieldsize = min(max($field['len'], 4), 40);
911 echo "\n";
912 echo $backup_field . "\n";
914 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
915 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
916 class="textfield" <?php echo $unnullify_trigger; ?>
917 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
918 id="field_<?php echo ($idindex); ?>_3" />
919 <?php
920 } // end if...elseif...else
922 // Upload choice (only for BLOBs because the binary
923 // attribute does not imply binary contents)
924 // (displayed whatever value the ProtectBinary has)
926 if ($is_upload && $field['is_blob']) {
927 // added by rajk
928 // check if field type is of longblob
929 if ($field['pma_type'] == "longblob")
931 if (isset ($tbl_type) && strlen ($tbl_type) > 0)
933 // load PMA Config
934 $PMA_Config = $_SESSION['PMA_Config'];
936 // is PMA_Config's data loaded? continue only if it is
937 if (!empty($PMA_Config))
939 $requiredTblType = $PMA_Config->get('PBXT_NAME');
941 if ($requiredTblType == strtolower ($tbl_type))
943 $pluginsExist = $PMA_Config->get('BLOBSTREAMING_PLUGINS_EXIST');
945 // check if blobstreaming plugins exist
946 if ($pluginsExist)
948 $curlExists = $PMA_Config->get('CURL_EXISTS');
950 // check if CURL exists
951 if ($curlExists)
953 $bs_tables = $PMA_Config->get('BLOBSTREAMABLE_DATABASES');
955 // check for BLOBStreamable databases and if current database name is provided
956 if (!empty($bs_tables) && strlen($db) > 0)
958 $bs_tables = $bs_tables[$db];
960 // check if reference to BLOBStreaming tables exists
961 if (isset($bs_tables))
963 $allBSTablesExist = TRUE;
965 foreach ($bs_tables as $table_key=>$bs_tbl)
966 if (!$bs_tables[$table_key]['Exists'])
968 $allBSTablesExist = FALSE;
969 break;
972 // check if necessary BLOBStreaming tables exist
973 if ($allBSTablesExist)
975 echo '<br />';
976 echo '<input type="checkbox" name="upload_blob_repo_' . $field['Field_md5'] . $vkey . '" /> ' . $strBLOBRepositoryUpload;
977 } // end if ($allBSTablesExist)
978 } // end if (isset($bs_tables)
979 } // end if (!empty($bs_tables) && strlen ($db) > 0)
980 } // end if ($curlExists)
981 } // end if ($pluginsExist)
982 } // end if ($requiredTblType == strtolower ($tbl_type))
983 } // end if (!empty($PMA_Config))
984 } // end if (isset ($tbl_type) && strlen ($tbl_type) > 0)
987 echo '<br />';
988 echo '<input type="file" name="fields_upload_' . $field['Field_md5'] . $vkey . '" class="textfield" id="field_' . $idindex . '_3" size="10" />&nbsp;';
990 // find maximum upload size, based on field type
992 * @todo with functions this is not so easy, as you can basically
993 * process any data with function like MD5
995 $max_field_sizes = array(
996 'tinyblob' => '256',
997 'blob' => '65536',
998 'mediumblob' => '16777216',
999 'longblob' => '4294967296'); // yeah, really
1001 $this_field_max_size = $max_upload_size; // from PHP max
1002 if ($this_field_max_size > $max_field_sizes[$field['pma_type']]) {
1003 $this_field_max_size = $max_field_sizes[$field['pma_type']];
1005 echo PMA_displayMaximumUploadSize($this_field_max_size) . "\n";
1006 // do not generate here the MAX_FILE_SIZE, because we should
1007 // put only one in the form to accommodate the biggest field
1008 if ($this_field_max_size > $biggest_max_file_size) {
1009 $biggest_max_file_size = $this_field_max_size;
1013 if (!empty($cfg['UploadDir'])) {
1014 $files = PMA_getFileSelectOptions(PMA_userDir($cfg['UploadDir']));
1015 if ($files === FALSE) {
1016 echo ' <font color="red">' . $strError . '</font><br />' . "\n";
1017 echo ' ' . $strWebServerUploadDirectoryError . "\n";
1018 } elseif (!empty($files)) {
1019 echo "<br />\n";
1020 echo ' <i>' . $strOr . '</i>' . ' ' . $strWebServerUploadDirectory . ':<br />' . "\n";
1021 echo ' <select size="1" name="fields_uploadlocal_' . $field['Field_md5'] . $vkey . '">' . "\n";
1022 echo ' <option value="" selected="selected"></option>' . "\n";
1023 echo $files;
1024 echo ' </select>' . "\n";
1026 } // end if (web-server upload directory)
1027 } // end elseif (binary or blob)
1028 else {
1029 // field size should be at least 4 and max 40
1030 $fieldsize = min(max($field['len'], 4), 40);
1031 echo $backup_field . "\n";
1032 if ($field['is_char'] && ($cfg['CharEditing'] == 'textarea' || strpos($data, "\n") !== FALSE)) {
1033 echo "\n";
1035 <textarea name="fields<?php echo $field_name_appendix; ?>"
1036 rows="<?php echo $cfg['CharTextareaRows']; ?>"
1037 cols="<?php echo $cfg['CharTextareaCols']; ?>"
1038 dir="<?php echo $text_dir; ?>"
1039 id="field_<?php echo ($idindex); ?>_3"
1040 <?php echo $unnullify_trigger; ?>
1041 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
1042 ><?php echo $special_chars_encoded; ?></textarea>
1043 <?php
1044 } else {
1046 <input type="text" name="fields<?php echo $field_name_appendix; ?>"
1047 value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>"
1048 class="textfield" <?php echo $unnullify_trigger; ?>
1049 tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"
1050 id="field_<?php echo ($idindex); ?>_3" />
1051 <?php
1052 if ($field['Extra'] == 'auto_increment') {
1054 <input type="hidden" name="auto_increment<?php echo $field_name_appendix; ?>" value="1" />
1055 <?php
1056 } // end if
1057 if (substr($field['pma_type'], 0, 9) == 'timestamp') {
1059 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="timestamp" />
1060 <?php
1062 if ($field['True_Type'] == 'bit') {
1064 <input type="hidden" name="fields_type<?php echo $field_name_appendix; ?>" value="bit" />
1065 <?php
1067 if ($field['pma_type'] == 'date' || $field['pma_type'] == 'datetime' || substr($field['pma_type'], 0, 9) == 'timestamp') {
1068 // the _3 suffix points to the date field
1069 // the _2 suffix points to the corresponding NULL checkbox
1071 <script type="text/javascript">
1072 //<![CDATA[
1073 document.write('<a title="<?php echo $strCalendar;?>"');
1074 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\')">');
1075 document.write('<img class="calendar"');
1076 document.write(' src="<?php echo $pmaThemeImage; ?>b_calendar.png"');
1077 document.write(' alt="<?php echo $strCalendar; ?>"/></a>');
1078 //]]>
1079 </script>
1080 <?php
1085 </td>
1086 </tr>
1087 <?php
1088 $odd_row = !$odd_row;
1089 } // end for
1090 $o_rows++;
1091 echo ' </tbody></table><br />';
1092 } // end foreach on multi-edit
1094 <br />
1096 <fieldset>
1097 <table border="0" cellpadding="5" cellspacing="0">
1098 <tr>
1099 <td valign="middle" nowrap="nowrap">
1100 <select name="submit_type" tabindex="<?php echo ($tabindex + $tabindex_for_value + 1); ?>">
1101 <?php
1102 if (isset($where_clause)) {
1104 <option value="<?php echo $strSave; ?>"><?php echo $strSave; ?></option>
1105 <?php
1108 <option value="<?php echo $strInsertAsNewRow; ?>"><?php echo $strInsertAsNewRow; ?></option>
1109 </select>
1110 <?php
1111 echo "\n";
1113 if (!isset($after_insert)) {
1114 $after_insert = 'back';
1117 </td>
1118 <td valign="middle">
1119 &nbsp;&nbsp;&nbsp;<strong><?php echo $strAndThen; ?></strong>&nbsp;&nbsp;&nbsp;
1120 </td>
1121 <td valign="middle" nowrap="nowrap">
1122 <select name="after_insert">
1123 <option value="back" <?php echo ($after_insert == 'back' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertBack; ?></option>
1124 <option value="new_insert" <?php echo ($after_insert == 'new_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNewInsert; ?></option>
1125 <?php
1126 if (isset($where_clause)) {
1128 <option value="same_insert" <?php echo ($after_insert == 'same_insert' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertSame; ?></option>
1129 <?php
1130 // If we have just numeric primary key, we can also edit next
1131 // in 2.8.2, we were looking for `field_name` = numeric_value
1132 //if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $where_clause)) {
1133 // in 2.9.0, we are looking for `table_name`.`field_name` = numeric_value
1134 if ($found_unique_key && preg_match('@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', $where_clause)) {
1136 <option value="edit_next" <?php echo ($after_insert == 'edit_next' ? 'selected="selected"' : ''); ?>><?php echo $strAfterInsertNext; ?></option>
1137 <?php
1141 </select>
1142 </td>
1143 </tr>
1145 <tr>
1146 <td>
1147 <?php echo PMA_showHint($strUseTabKey); ?>
1148 </td>
1149 <td colspan="3" align="right" valign="middle">
1150 <input type="submit" value="<?php echo $strGo; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 6); ?>" id="buttonYes" />
1151 <input type="reset" value="<?php echo $strReset; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 7); ?>" />
1152 </td>
1153 </tr>
1154 </table>
1155 </fieldset>
1156 <?php if ($biggest_max_file_size > 0) {
1157 echo ' ' . PMA_generateHiddenMaxFileSize($biggest_max_file_size) . "\n";
1158 } ?>
1159 </form>
1160 <?php
1161 if ($insert_mode) {
1163 <!-- Restart insertion form -->
1164 <form method="post" action="tbl_replace.php" name="restartForm" >
1165 <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
1166 <input type="hidden" name="goto" value="<?php echo htmlspecialchars($GLOBALS['goto']); ?>" />
1167 <input type="hidden" name="err_url" value="<?php echo htmlspecialchars($err_url); ?>" />
1168 <input type="hidden" name="sql_query" value="<?php echo htmlspecialchars($sql_query); ?>" />
1169 <?php
1170 if (isset($where_clauses)) {
1171 foreach ($where_clause_array as $key_id => $where_clause) {
1172 echo '<input type="hidden" name="where_clause[' . $key_id . ']" value="' . htmlspecialchars(trim($where_clause)) . '" />'. "\n";
1175 $tmp = '<select name="insert_rows" id="insert_rows" onchange="this.form.submit();" >' . "\n";
1176 $option_values = array(1,2,5,10,15,20,30,40);
1177 foreach ($option_values as $value) {
1178 $tmp .= '<option value="' . $value . '"';
1179 if ($value == $cfg['InsertRows']) {
1180 $tmp .= ' selected="selected"';
1182 $tmp .= '>' . $value . '</option>' . "\n";
1184 $tmp .= '</select>' . "\n";
1185 echo "\n" . sprintf($strRestartInsertion, $tmp);
1186 unset($tmp);
1187 echo '<noscript><input type="submit" value="' . $strGo . '" /></noscript>' . "\n";
1188 echo '</form>' . "\n";
1192 * Displays the footer
1194 require_once './libraries/footer.inc.php';