home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / db_sql.php < prev    next >
PHP Script  |  2008-06-23  |  999b  |  46 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  *
  5.  * @version $Id: db_sql.php 10965 2007-12-05 17:53:52Z lem9 $
  6.  */
  7.  
  8. /**
  9.  *
  10.  */
  11. require_once './libraries/common.inc.php';
  12.  
  13. /**
  14.  * Runs common work
  15.  */
  16. require './libraries/db_common.inc.php';
  17. require_once './libraries/sql_query_form.lib.php';
  18.  
  19. // The Back link after a syntax error will return to this script
  20. // with the typed query in the textarea.
  21. $goto = 'db_sql.php';
  22. $back = 'db_sql.php';
  23.  
  24. /**
  25.  * Gets informations about the database and, if it is empty, move to the
  26.  * "db_structure.php" script where table can be created
  27.  */
  28. require './libraries/db_info.inc.php';
  29. if ($num_tables == 0 && empty($db_query_force)) {
  30.     $sub_part   = '';
  31.     $is_info    = TRUE;
  32.     require './db_structure.php';
  33.     exit();
  34. }
  35.  
  36. /**
  37.  * Query box, bookmark, insert data from textfile
  38.  */
  39. PMA_sqlQueryForm(true, false, isset($_REQUEST['delimiter']) ? $_REQUEST['delimiter'] : ';');
  40.  
  41. /**
  42.  * Displays the footer
  43.  */
  44. require_once './libraries/footer.inc.php';
  45. ?>
  46.