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

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  *
  5.  * @version $Id: tbl_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/tbl_common.php';
  17. $url_query .= '&goto=tbl_sql.php&back=tbl_sql.php';
  18.  
  19. require_once './libraries/sql_query_form.lib.php';
  20.  
  21. $err_url   = 'tbl_sql.php' . $err_url;
  22. // The Back link after a syntax error will return to this script
  23. // with the typed query in the textarea.
  24. $goto = 'tbl_sql.php';
  25. $back = 'tbl_sql.php';
  26.  
  27. /**
  28.  * Get table information
  29.  */
  30. require_once './libraries/tbl_info.inc.php';
  31.  
  32. /**
  33.  * Displays top menu links
  34.  */
  35. require_once './libraries/tbl_links.inc.php';
  36.  
  37. /**
  38.  * Query box, bookmark, insert data from textfile
  39.  */
  40. PMA_sqlQueryForm(true, false, isset($_REQUEST['delimiter']) ? $_REQUEST['delimiter'] : ';');
  41.  
  42. /**
  43.  * Displays the footer
  44.  */
  45. require_once './libraries/footer.inc.php';
  46. ?>
  47.