home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / htdocs / phpMyAdmin / db_readdump.php < prev    next >
PHP Script  |  2000-08-20  |  2KB  |  74 lines

  1. <?php
  2. /* $Id: db_readdump.php,v 1.18 2000/07/02 10:14:20 tobias Exp $ */
  3. @set_time_limit(10000);
  4.  
  5. function split_sql($sql)
  6. {
  7.     $sql = trim($sql);
  8.     $sql = ereg_replace("#[^\n]*\n", "", $sql);
  9.     $buffer = array();
  10.     $ret = array();
  11.     $in_string = false;
  12.  
  13.     for($i=0; $i<strlen($sql)-1; $i++)
  14.     {
  15.          if($sql[$i] == ";" && !$in_string)
  16.         {
  17.             $ret[] = substr($sql, 0, $i);
  18.             $sql = substr($sql, $i + 1);
  19.             $i = 0;
  20.         }
  21.  
  22.         if($in_string && ($sql[$i] == $in_string) && $buffer[0] != "\\")
  23.         {
  24.              $in_string = false;
  25.         }
  26.         elseif(!$in_string && ($sql[$i] == "\"" || $sql[$i] == "'") && (!isset($buffer[0]) || $buffer[0] != "\\"))
  27.         {
  28.              $in_string = $sql[$i];
  29.         }
  30.         if(isset($buffer[1]))
  31.         {
  32.             $buffer[0] = $buffer[1];
  33.         }
  34.         $buffer[1] = $sql[$i];
  35.      }
  36.  
  37.     if(!empty($sql))
  38.     {
  39.         $ret[] = $sql;
  40.     }
  41.  
  42.     return($ret);
  43. }
  44.  
  45. if(!empty($sql_file) && $sql_file != "none" && ereg("^php[0-9A-Za-z_.-]+$", basename($sql_file)))
  46. {
  47.     $sql_query = addslashes(fread(fopen($sql_file, "r"), filesize($sql_file)));
  48. }
  49.  
  50. $pieces  = split_sql($sql_query);
  51.  
  52. if (count($pieces) == 1 && !empty($pieces[0]))
  53.    {
  54.    $sql_query = trim($pieces[0]);
  55.    include ("sql.php");
  56.    exit;
  57.    }
  58.  
  59. include("header.inc.php");
  60. for ($i=0; $i<count($pieces); $i++)
  61. {
  62.     $pieces[$i] = stripslashes(trim($pieces[$i]));
  63.     if(!empty($pieces[$i]) && $pieces[$i] != "#")
  64.     {
  65.         $result = mysql_db_query ($db, $pieces[$i]) or mysql_die();
  66.     }
  67. }
  68.  
  69. $sql_query = stripslashes($sql_query);
  70. $message = $strSuccess;
  71.  
  72. include("db_details.php");
  73.  
  74. ?>