there was an extra space in the ChangeLog
[phpmyadmin/crack.git] / sql.php
blob248ebe3ad4de97d7ac18dabd9be250dae37e3677
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @todo we must handle the case if sql.php is called directly with a query
5 * that returns 0 rows - to prevent cyclic redirects or includes
6 * @version $Id$
7 * @package phpMyAdmin
8 */
10 /**
11 * Gets some core libraries
13 require_once './libraries/common.inc.php';
14 require_once './libraries/Table.class.php';
15 require_once './libraries/check_user_privileges.lib.php';
16 require_once './libraries/bookmark.lib.php';
18 $GLOBALS['js_include'][] = 'mootools.js';
20 /**
21 * Defines the url to return to in case of error in a sql statement
23 // Security checkings
24 if (! empty($goto)) {
25 $is_gotofile = preg_replace('@^([^?]+).*$@s', '\\1', $goto);
26 if (! @file_exists('./' . $is_gotofile)) {
27 unset($goto);
28 } else {
29 $is_gotofile = ($is_gotofile == $goto);
31 } else {
32 $goto = (! strlen($table)) ? $cfg['DefaultTabDatabase'] : $cfg['DefaultTabTable'];
33 $is_gotofile = true;
34 } // end if
36 if (!isset($err_url)) {
37 $err_url = (!empty($back) ? $back : $goto)
38 . '?' . PMA_generate_common_url($db)
39 . ((strpos(' ' . $goto, 'db_') != 1 && strlen($table)) ? '&amp;table=' . urlencode($table) : '');
40 } // end if
42 // Coming from a bookmark dialog
43 if (isset($fields['query'])) {
44 $sql_query = $fields['query'];
47 // This one is just to fill $db
48 if (isset($fields['dbase'])) {
49 $db = $fields['dbase'];
52 // Default to browse if no query set and we have table
53 // (needed for browsing from DefaultTabTable)
54 if (empty($sql_query) && strlen($table) && strlen($db)) {
55 require_once './libraries/bookmark.lib.php';
56 $book_sql_query = PMA_Bookmark_get($db, '\'' . PMA_sqlAddslashes($table) . '\'',
57 'label');
59 if (! empty($book_sql_query)) {
60 $sql_query = $book_sql_query;
61 } else {
62 $sql_query = 'SELECT * FROM ' . PMA_backquote($table);
64 unset($book_sql_query);
66 // set $goto to what will be displayed if query returns 0 rows
67 $goto = 'tbl_structure.php';
68 } else {
69 // Now we can check the parameters
70 PMA_checkParameters(array('sql_query'));
73 // instead of doing the test twice
74 $is_drop_database = preg_match('/DROP[[:space:]]+(DATABASE|SCHEMA)[[:space:]]+/i',
75 $sql_query);
77 /**
78 * Check rights in case of DROP DATABASE
80 * This test may be bypassed if $is_js_confirmed = 1 (already checked with js)
81 * but since a malicious user may pass this variable by url/form, we don't take
82 * into account this case.
84 if (!defined('PMA_CHK_DROP')
85 && !$cfg['AllowUserDropDatabase']
86 && $is_drop_database
87 && !$is_superuser) {
88 require_once './libraries/header.inc.php';
89 PMA_mysqlDie($strNoDropDatabases, '', '', $err_url);
90 } // end if
92 require_once './libraries/display_tbl.lib.php';
93 PMA_displayTable_checkConfigParams();
95 /**
96 * Need to find the real end of rows?
98 if (isset($find_real_end) && $find_real_end) {
99 $unlim_num_rows = PMA_Table::countRecords($db, $table, $force_exact = true);
100 $_SESSION['tmp_user_values']['pos'] = @((ceil($unlim_num_rows / $_SESSION['tmp_user_values']['max_rows']) - 1) * $_SESSION['tmp_user_values']['max_rows']);
105 * Bookmark add
107 if (isset($store_bkm)) {
108 PMA_Bookmark_save($fields, (isset($bkm_all_users) && $bkm_all_users == 'true' ? true : false));
109 // go back to sql.php to redisplay query; do not use &amp; in this case:
110 PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . $goto . '&label=' . $fields['label']);
111 } // end if
114 * Parse and analyze the query
116 require_once './libraries/parse_analyze.lib.php';
119 * Sets or modifies the $goto variable if required
121 if ($goto == 'sql.php') {
122 $is_gotofile = false;
123 $goto = 'sql.php?'
124 . PMA_generate_common_url($db, $table)
125 . '&amp;sql_query=' . urlencode($sql_query);
126 } // end if
130 * Go back to further page if table should not be dropped
132 if (isset($btnDrop) && $btnDrop == $strNo) {
133 if (!empty($back)) {
134 $goto = $back;
136 if ($is_gotofile) {
137 if (strpos($goto, 'db_') === 0 && strlen($table)) {
138 $table = '';
140 $active_page = $goto;
141 require './' . PMA_securePath($goto);
142 } else {
143 PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . str_replace('&amp;', '&', $goto));
145 exit();
146 } // end if
150 * Displays the confirm page if required
152 * This part of the script is bypassed if $is_js_confirmed = 1 (already checked
153 * with js) because possible security issue is not so important here: at most,
154 * the confirm message isn't displayed.
156 * Also bypassed if only showing php code.or validating a SQL query
158 if (! $cfg['Confirm'] || isset($_REQUEST['is_js_confirmed']) || isset($btnDrop)
159 // if we are coming from a "Create PHP code" or a "Without PHP Code"
160 // dialog, we won't execute the query anyway, so don't confirm
161 || isset($GLOBALS['show_as_php'])
162 || !empty($GLOBALS['validatequery'])) {
163 $do_confirm = false;
164 } else {
165 $do_confirm = isset($analyzed_sql[0]['queryflags']['need_confirm']);
168 if ($do_confirm) {
169 $stripped_sql_query = $sql_query;
170 require_once './libraries/header.inc.php';
171 if ($is_drop_database) {
172 echo '<h1 class="warning">' . $strDropDatabaseStrongWarning . '</h1>';
174 echo '<form action="sql.php" method="post">' . "\n"
175 .PMA_generate_common_hidden_inputs($db, $table);
177 <input type="hidden" name="sql_query" value="<?php echo htmlspecialchars($sql_query); ?>" />
178 <input type="hidden" name="zero_rows" value="<?php echo isset($zero_rows) ? PMA_sanitize($zero_rows) : ''; ?>" />
179 <input type="hidden" name="goto" value="<?php echo $goto; ?>" />
180 <input type="hidden" name="back" value="<?php echo isset($back) ? PMA_sanitize($back) : ''; ?>" />
181 <input type="hidden" name="reload" value="<?php echo isset($reload) ? PMA_sanitize($reload) : 0; ?>" />
182 <input type="hidden" name="purge" value="<?php echo isset($purge) ? PMA_sanitize($purge) : ''; ?>" />
183 <input type="hidden" name="cpurge" value="<?php echo isset($cpurge) ? PMA_sanitize($cpurge) : ''; ?>" />
184 <input type="hidden" name="purgekey" value="<?php echo isset($purgekey) ? PMA_sanitize($purgekey) : ''; ?>" />
185 <input type="hidden" name="show_query" value="<?php echo isset($show_query) ? PMA_sanitize($show_query) : ''; ?>" />
186 <?php
187 echo '<fieldset class="confirmation">' . "\n"
188 .' <legend>' . $strDoYouReally . '</legend>'
189 .' <tt>' . htmlspecialchars($stripped_sql_query) . '</tt>' . "\n"
190 .'</fieldset>' . "\n"
191 .'<fieldset class="tblFooters">' . "\n";
193 <input type="submit" name="btnDrop" value="<?php echo $strYes; ?>" id="buttonYes" />
194 <input type="submit" name="btnDrop" value="<?php echo $strNo; ?>" id="buttonNo" />
195 <?php
196 echo '</fieldset>' . "\n"
197 . '</form>' . "\n";
200 * Displays the footer and exit
202 require_once './libraries/footer.inc.php';
203 } // end if $do_confirm
206 // Defines some variables
207 // A table has to be created, renamed, dropped -> navi frame should be reloaded
209 * @todo use the parser/analyzer
212 if (empty($reload)
213 && preg_match('/^(CREATE|ALTER|DROP)\s+(VIEW|TABLE|DATABASE|SCHEMA)\s+/i', $sql_query)) {
214 $reload = 1;
217 // SK -- Patch: $is_group added for use in calculation of total number of
218 // rows.
219 // $is_count is changed for more correct "LIMIT" clause
220 // appending in queries like
221 // "SELECT COUNT(...) FROM ... GROUP BY ..."
224 * @todo detect all this with the parser, to avoid problems finding
225 * those strings in comments or backquoted identifiers
228 $is_explain = $is_count = $is_export = $is_delete = $is_insert = $is_affected = $is_show = $is_maint = $is_analyse = $is_group = $is_func = $is_replace = false;
229 if ($is_select) { // see line 141
230 $is_group = preg_match('@(GROUP[[:space:]]+BY|HAVING|SELECT[[:space:]]+DISTINCT)[[:space:]]+@i', $sql_query);
231 $is_func = !$is_group && (preg_match('@[[:space:]]+(SUM|AVG|STD|STDDEV|MIN|MAX|BIT_OR|BIT_AND)\s*\(@i', $sql_query));
232 $is_count = !$is_group && (preg_match('@^SELECT[[:space:]]+COUNT\((.*\.+)?.*\)@i', $sql_query));
233 $is_export = (preg_match('@[[:space:]]+INTO[[:space:]]+OUTFILE[[:space:]]+@i', $sql_query));
234 $is_analyse = (preg_match('@[[:space:]]+PROCEDURE[[:space:]]+ANALYSE@i', $sql_query));
235 } elseif (preg_match('@^EXPLAIN[[:space:]]+@i', $sql_query)) {
236 $is_explain = true;
237 } elseif (preg_match('@^DELETE[[:space:]]+@i', $sql_query)) {
238 $is_delete = true;
239 $is_affected = true;
240 } elseif (preg_match('@^(INSERT|LOAD[[:space:]]+DATA|REPLACE)[[:space:]]+@i', $sql_query)) {
241 $is_insert = true;
242 $is_affected = true;
243 if (preg_match('@^(REPLACE)[[:space:]]+@i', $sql_query)) {
244 $is_replace = true;
246 } elseif (preg_match('@^UPDATE[[:space:]]+@i', $sql_query)) {
247 $is_affected = true;
248 } elseif (preg_match('@^[[:space:]]*SHOW[[:space:]]+@i', $sql_query)) {
249 $is_show = true;
250 } elseif (preg_match('@^(CHECK|ANALYZE|REPAIR|OPTIMIZE)[[:space:]]+TABLE[[:space:]]+@i', $sql_query)) {
251 $is_maint = true;
254 // Do append a "LIMIT" clause?
255 if ((! $cfg['ShowAll'] || $_SESSION['tmp_user_values']['max_rows'] != 'all')
256 && ! ($is_count || $is_export || $is_func || $is_analyse)
257 && isset($analyzed_sql[0]['queryflags']['select_from'])
258 && ! isset($analyzed_sql[0]['queryflags']['offset'])
259 && empty($analyzed_sql[0]['limit_clause'])
261 $sql_limit_to_append = ' LIMIT ' . $_SESSION['tmp_user_values']['pos'] . ', ' . $_SESSION['tmp_user_values']['max_rows'] . " ";
263 $full_sql_query = $analyzed_sql[0]['section_before_limit'] . "\n" . $sql_limit_to_append . $analyzed_sql[0]['section_after_limit'];
265 * @todo pretty printing of this modified query
267 if (isset($display_query)) {
268 // if the analysis of the original query revealed that we found
269 // a section_after_limit, we now have to analyze $display_query
270 // to display it correctly
272 if (!empty($analyzed_sql[0]['section_after_limit']) && trim($analyzed_sql[0]['section_after_limit']) != ';') {
273 $analyzed_display_query = PMA_SQP_analyze(PMA_SQP_parse($display_query));
274 $display_query = $analyzed_display_query[0]['section_before_limit'] . "\n" . $sql_limit_to_append . $analyzed_display_query[0]['section_after_limit'];
278 } else {
279 $full_sql_query = $sql_query;
280 } // end if...else
282 if (strlen($db)) {
283 PMA_DBI_select_db($db);
286 // E x e c u t e t h e q u e r y
288 // Only if we didn't ask to see the php code (mikebeck)
289 if (isset($GLOBALS['show_as_php']) || !empty($GLOBALS['validatequery'])) {
290 unset($result);
291 $num_rows = 0;
292 } else {
293 if (isset($_SESSION['profiling']) && PMA_profilingSupported()) {
294 PMA_DBI_query('SET PROFILING=1;');
297 // fisharebest: release the session lock, otherwise we won't be able to run other
298 // scripts until the query has finished (which could take a very long time).
299 // Note: footer.inc.php writes debug info to $_SESSION, so debuggers will have to wait.
300 if (empty($_SESSION['debug'])) {
301 session_write_close();
304 // garvin: Measure query time.
305 // TODO-Item http://sourceforge.net/tracker/index.php?func=detail&aid=571934&group_id=23067&atid=377411
306 $querytime_before = array_sum(explode(' ', microtime()));
308 $result = @PMA_DBI_try_query($full_sql_query, null, PMA_DBI_QUERY_STORE);
310 $querytime_after = array_sum(explode(' ', microtime()));
312 $GLOBALS['querytime'] = $querytime_after - $querytime_before;
314 // Displays an error message if required and stop parsing the script
315 if ($error = PMA_DBI_getError()) {
316 if ($is_gotofile) {
317 if (strpos($goto, 'db_') === 0 && strlen($table)) {
318 $table = '';
320 $active_page = $goto;
321 $message = htmlspecialchars(PMA_Message::rawError($error));
323 * Go to target path.
325 require './' . PMA_securePath($goto);
326 } else {
328 * HTML header.
330 require_once './libraries/header.inc.php';
331 $full_err_url = (preg_match('@^(db|tbl)_@', $err_url))
332 ? $err_url . '&amp;show_query=1&amp;sql_query=' . urlencode($sql_query)
333 : $err_url;
334 PMA_mysqlDie($error, $full_sql_query, '', $full_err_url);
336 exit;
338 unset($error);
340 // Gets the number of rows affected/returned
341 // (This must be done immediately after the query because
342 // mysql_affected_rows() reports about the last query done)
344 if (!$is_affected) {
345 $num_rows = ($result) ? @PMA_DBI_num_rows($result) : 0;
346 } elseif (!isset($num_rows)) {
347 $num_rows = @PMA_DBI_affected_rows();
350 // Grabs the profiling results
351 if (isset($_SESSION['profiling']) && PMA_profilingSupported()) {
352 $profiling_results = PMA_DBI_fetch_result('SHOW PROFILE;');
355 // Checks if the current database has changed
356 // This could happen if the user sends a query like "USE `database`;"
358 * commented out auto-switching to active database - really required?
359 * bug #1814718 win: table list disappears (mixed case db names)
360 * https://sourceforge.net/support/tracker.php?aid=1814718
361 * @todo RELEASE test and comit or rollback before release
362 $current_db = PMA_DBI_fetch_value('SELECT DATABASE()');
363 if ($db !== $current_db) {
364 $db = $current_db;
365 $reload = 1;
367 unset($current_db);
370 // tmpfile remove after convert encoding appended by Y.Kawada
371 if (function_exists('PMA_kanji_file_conv')
372 && (isset($textfile) && file_exists($textfile))) {
373 unlink($textfile);
376 // Counts the total number of rows for the same 'SELECT' query without the
377 // 'LIMIT' clause that may have been programatically added
379 if (empty($sql_limit_to_append)) {
380 $unlim_num_rows = $num_rows;
381 // if we did not append a limit, set this to get a correct
382 // "Showing rows..." message
383 //$_SESSION['tmp_user_values']['max_rows'] = 'all';
384 } elseif ($is_select) {
386 // c o u n t q u e r y
388 // If we are "just browsing", there is only one table,
389 // and no WHERE clause (or just 'WHERE 1 '),
390 // we do a quick count (which uses MaxExactCount) because
391 // SQL_CALC_FOUND_ROWS is not quick on large InnoDB tables
393 // However, do not count again if we did it previously
394 // due to $find_real_end == true
396 if (!$is_group
397 && !isset($analyzed_sql[0]['queryflags']['union'])
398 && !isset($analyzed_sql[0]['table_ref'][1]['table_name'])
399 && (empty($analyzed_sql[0]['where_clause'])
400 || $analyzed_sql[0]['where_clause'] == '1 ')
401 && !isset($find_real_end)
404 // "j u s t b r o w s i n g"
405 $unlim_num_rows = PMA_Table::countRecords($db, $table);
407 } else { // n o t " j u s t b r o w s i n g "
409 // add select expression after the SQL_CALC_FOUND_ROWS
411 // for UNION, just adding SQL_CALC_FOUND_ROWS
412 // after the first SELECT works.
414 // take the left part, could be:
415 // SELECT
416 // (SELECT
417 $count_query = PMA_SQP_formatHtml($parsed_sql, 'query_only', 0, $analyzed_sql[0]['position_of_first_select'] + 1);
418 $count_query .= ' SQL_CALC_FOUND_ROWS ';
419 // add everything that was after the first SELECT
420 $count_query .= PMA_SQP_formatHtml($parsed_sql, 'query_only', $analyzed_sql[0]['position_of_first_select']+1);
421 // ensure there is no semicolon at the end of the
422 // count query because we'll probably add
423 // a LIMIT 1 clause after it
424 $count_query = rtrim($count_query);
425 $count_query = rtrim($count_query, ';');
427 // if using SQL_CALC_FOUND_ROWS, add a LIMIT to avoid
428 // long delays. Returned count will be complete anyway.
429 // (but a LIMIT would disrupt results in an UNION)
431 if (!isset($analyzed_sql[0]['queryflags']['union'])) {
432 $count_query .= ' LIMIT 1';
435 // run the count query
437 PMA_DBI_try_query($count_query);
438 // if (mysql_error()) {
439 // void.
440 // I tried the case
441 // (SELECT `User`, `Host`, `Db`, `Select_priv` FROM `db`)
442 // UNION (SELECT `User`, `Host`, "%" AS "Db",
443 // `Select_priv`
444 // FROM `user`) ORDER BY `User`, `Host`, `Db`;
445 // and although the generated count_query is wrong
446 // the SELECT FOUND_ROWS() work! (maybe it gets the
447 // count from the latest query that worked)
449 // another case where the count_query is wrong:
450 // SELECT COUNT(*), f1 from t1 group by f1
451 // and you click to sort on count(*)
452 // }
453 $unlim_num_rows = PMA_DBI_fetch_value('SELECT FOUND_ROWS()');
454 } // end else "just browsing"
456 } else { // not $is_select
457 $unlim_num_rows = 0;
458 } // end rows total count
460 // garvin: if a table or database gets dropped, check column comments.
461 if (isset($purge) && $purge == '1') {
463 * Cleanup relations.
465 require_once './libraries/relation_cleanup.lib.php';
467 if (strlen($table) && strlen($db)) {
468 PMA_relationsCleanupTable($db, $table);
469 } elseif (strlen($db)) {
470 PMA_relationsCleanupDatabase($db);
471 } else {
472 // garvin: VOID. No DB/Table gets deleted.
473 } // end if relation-stuff
474 } // end if ($purge)
476 // garvin: If a column gets dropped, do relation magic.
477 if (isset($cpurge) && $cpurge == '1' && isset($purgekey)
478 && strlen($db) && strlen($table) && !empty($purgekey)) {
479 require_once './libraries/relation_cleanup.lib.php';
480 PMA_relationsCleanupColumn($db, $table, $purgekey);
482 } // end if column PMA_* purge
483 } // end else "didn't ask to see php code"
485 // No rows returned -> move back to the calling page
486 if (0 == $num_rows || $is_affected) {
487 if ($is_delete) {
488 $message = PMA_Message::success('strRowsDeleted');
489 $message->addParam($num_rows);
490 } elseif ($is_insert) {
491 if ($is_replace) {
492 /* For replace we get DELETED + INSERTED row count, so we have to call it affected */
493 $message = PMA_Message::success('strRowsAffected');
494 $message->addParam($num_rows);
495 } else {
496 $message = PMA_Message::success('strRowsInserted');
497 $message->addParam($num_rows);
499 $insert_id = PMA_DBI_insert_id();
500 if ($insert_id != 0) {
501 // insert_id is id of FIRST record inserted in one insert, so if we inserted multiple rows, we had to increment this
502 $message->addMessage('[br]');
503 // need to use a temporary because the Message class
504 // currently supports adding parameters only to the first
505 // message
506 $_inserted = PMA_Message::notice('strInsertedRowId');
507 $_inserted->addParam($insert_id + $num_rows - 1);
508 $message->addMessage($_inserted);
510 } elseif ($is_affected) {
511 $message = PMA_Message::success('strRowsAffected');
512 $message->addParam($num_rows);
514 // Ok, here is an explanation for the !$is_select.
515 // The form generated by sql_query_form.lib.php
516 // and db_sql.php has many submit buttons
517 // on the same form, and some confusion arises from the
518 // fact that $zero_rows is sent for every case.
519 // The $zero_rows containing $strSuccess and sent with
520 // the form should not have priority over
521 // errors like $strEmptyResultSet
522 } elseif (!empty($zero_rows) && !$is_select) {
523 $message = PMA_Message::rawSuccess(htmlspecialchars($zero_rows));
524 } elseif (!empty($GLOBALS['show_as_php'])) {
525 $message = PMA_Message::success('strShowingPhp');
526 } elseif (isset($GLOBALS['show_as_php'])) {
527 /* User disable showing as PHP, query is only displayed */
528 $message = PMA_Message::notice('strShowingSQL');
529 } elseif (!empty($GLOBALS['validatequery'])) {
530 $message = PMA_Message::notice('strValidateSQL');
531 } else {
532 $message = PMA_Message::success('strEmptyResultSet');
535 if (isset($GLOBALS['querytime'])) {
536 $_querytime = PMA_Message::notice('strQueryTime');
537 $_querytime->addParam($GLOBALS['querytime']);
538 $message->addMessage('(');
539 $message->addMessage($_querytime);
540 $message->addMessage(')');
543 if ($is_gotofile) {
544 $goto = PMA_securePath($goto);
545 // Checks for a valid target script
546 $is_db = $is_table = false;
547 include 'libraries/db_table_exists.lib.php';
548 if (strpos($goto, 'tbl_') === 0 && ! $is_table) {
549 if (strlen($table)) {
550 $table = '';
552 $goto = 'db_sql.php';
554 if (strpos($goto, 'db_') === 0 && ! $is_db) {
555 if (strlen($db)) {
556 $db = '';
558 $goto = 'main.php';
560 // Loads to target script
561 if (strpos($goto, 'db_') === 0
562 || strpos($goto, 'tbl_') === 0) {
563 $GLOBALS['js_include'][] = 'functions.js';
565 if ($goto != 'main.php') {
566 require_once './libraries/header.inc.php';
568 $active_page = $goto;
569 require './' . $goto;
570 } else {
571 // avoid a redirect loop when last record was deleted
572 if (0 == $num_rows && 'sql.php' == $cfg['DefaultTabTable']) {
573 $goto = str_replace('sql.php','tbl_structure.php',$goto);
575 PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . str_replace('&amp;', '&', $goto) . '&message=' . urlencode($message));
576 } // end else
577 exit();
578 } // end no rows returned
580 // At least one row is returned -> displays a table with results
581 else {
582 // Displays the headers
583 if (isset($show_query)) {
584 unset($show_query);
586 if (isset($printview) && $printview == '1') {
587 require_once './libraries/header_printview.inc.php';
588 } else {
589 $GLOBALS['js_include'][] = 'functions.js';
590 unset($message);
591 if (strlen($table)) {
592 require './libraries/tbl_common.php';
593 $url_query .= '&amp;goto=tbl_sql.php&amp;back=tbl_sql.php';
594 require './libraries/tbl_info.inc.php';
595 require './libraries/tbl_links.inc.php';
596 } elseif (strlen($db)) {
597 require './libraries/db_common.inc.php';
598 require './libraries/db_info.inc.php';
599 } else {
600 require './libraries/server_common.inc.php';
601 require './libraries/server_links.inc.php';
605 if (strlen($db)) {
606 require_once './libraries/relation.lib.php';
607 $cfgRelation = PMA_getRelationsParam();
610 // Gets the list of fields properties
611 if (isset($result) && $result) {
612 $fields_meta = PMA_DBI_get_fields_meta($result);
613 $fields_cnt = count($fields_meta);
616 // Display previous update query (from tbl_replace)
617 if (isset($disp_query) && $cfg['ShowSQL'] == true) {
618 PMA_showMessage($disp_message, $disp_query, 'success');
621 if (isset($profiling_results)) {
622 PMA_profilingResults($profiling_results);
625 // Displays the results in a table
626 if (empty($disp_mode)) {
627 // see the "PMA_setDisplayMode()" function in
628 // libraries/display_tbl.lib.php
629 $disp_mode = 'urdr111101';
632 // hide edit and delete links for information_schema
633 if ($db == 'information_schema') {
634 $disp_mode = 'nnnn110111';
637 if (isset($label)) {
638 $message = PMA_message::success('strBookmarkCreated');
639 $message->addParam($label);
640 $message->display();
643 PMA_displayTable($result, $disp_mode, $analyzed_sql);
644 PMA_DBI_free_result($result);
646 // BEGIN INDEX CHECK See if indexes should be checked.
647 if (isset($query_type) && $query_type == 'check_tbl' && isset($selected) && is_array($selected)) {
648 foreach ($selected as $idx => $tbl_name) {
649 $check = PMA_Index::findDuplicates($tbl_name, $db);
650 if (! empty($check)) {
651 printf($strIndexWarningTable, $tbl_name);
652 echo $check;
655 } // End INDEX CHECK
657 // Bookmark support if required
658 if ($disp_mode[7] == '1'
659 && (! empty($cfg['Bookmark']) && empty($id_bookmark))
660 && !empty($sql_query)) {
661 echo "\n";
663 $goto = 'sql.php?'
664 . PMA_generate_common_url($db, $table)
665 . '&amp;sql_query=' . urlencode($sql_query)
666 . '&amp;id_bookmark=1';
669 <form action="sql.php" method="post" onsubmit="return emptyFormElements(this, 'fields[label]');">
670 <?php echo PMA_generate_common_hidden_inputs(); ?>
671 <input type="hidden" name="goto" value="<?php echo $goto; ?>" />
672 <input type="hidden" name="fields[dbase]" value="<?php echo htmlspecialchars($db); ?>" />
673 <input type="hidden" name="fields[user]" value="<?php echo $cfg['Bookmark']['user']; ?>" />
674 <input type="hidden" name="fields[query]" value="<?php echo urlencode(isset($complete_query) ? $complete_query : $sql_query); ?>" />
675 <fieldset>
676 <legend><?php
677 echo ($cfg['PropertiesIconic'] ? '<img class="icon" src="' . $pmaThemeImage . 'b_bookmark.png" width="16" height="16" alt="' . $strBookmarkThis . '" />' : '')
678 . $strBookmarkThis;
680 </legend>
682 <div class="formelement">
683 <label for="fields_label_"><?php echo $strBookmarkLabel; ?>:</label>
684 <input type="text" id="fields_label_" name="fields[label]" value="" />
685 </div>
687 <div class="formelement">
688 <input type="checkbox" name="bkm_all_users" id="bkm_all_users" value="true" />
689 <label for="bkm_all_users"><?php echo $strBookmarkAllUsers; ?></label>
690 </div>
692 <div class="clearfloat"></div>
693 </fieldset>
694 <fieldset class="tblFooters">
695 <input type="submit" name="store_bkm" value="<?php echo $strBookmarkThis; ?>" />
696 </fieldset>
697 </form>
698 <?php
699 } // end bookmark support
701 // Do print the page if required
702 if (isset($printview) && $printview == '1') {
704 <script type="text/javascript">
705 //<![CDATA[
706 // Do print the page
707 window.onload = function()
709 if (typeof(window.print) != 'undefined') {
710 window.print();
713 //]]>
714 </script>
715 <?php
716 } // end print case
717 } // end rows returned
720 * Displays the footer
722 require_once './libraries/footer.inc.php';