home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February (DVD) / PCWorld_2008-02_DVD.iso / v cisle / PHP / PHP.exe / EasyPHP-2.0b1-setup.exe / {app} / sqlitemanager / include / sql.php < prev    next >
Encoding:
PHP Script  |  2006-04-18  |  408 b   |  17 lines

  1. <?php
  2. /**
  3. * Web based SQLite management
  4. * Manage manual query and file query
  5. * @package SQLiteManager
  6. * @author FrΘdΘric HENNINOT
  7. * @version $Id: sql.php,v 1.5 2004/01/04 13:44:55 freddy78 Exp $ $Revision: 1.5 $
  8. */
  9.  
  10. if(!empty($_FILES["sqlFile"]["tmp_name"])){
  11.     $fp = fopen($_FILES["sqlFile"]["tmp_name"], "r");
  12.     $DisplayQuery = fread($fp, $_FILES["sqlFile"]["size"]);
  13. }
  14. include INCLUDE_LIB."browse.php";
  15.  
  16. ?>
  17.