Jump to content

PHP Execute MySQL From Text File


JustinK101

Recommended Posts

How do I explode on this?

 

-- phpMyAdmin SQL Dump
-- version 2.11.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 05, 2008 at 11:50 PM
-- Server version: 5.0.45
-- PHP Version: 5.2.3

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

--
-- Database: `timecard_demo`
--

-- --------------------------------------------------------

--
-- Table structure for table `administrators`
--

CREATE TABLE IF NOT EXISTS `administrators` (
  `id` bigint(20) unsigned NOT NULL auto_increment,
  `username` varchar(30) NOT NULL,
  `password` blob NOT NULL COMMENT 'Encrypted Value Stored',
  `date_created` datetime NOT NULL,
  `date_last_modified` datetime NOT NULL,
  `user_who_created` varchar(30) NOT NULL,
  `user_who_last_modified` varchar(30) NOT NULL,
  `last_succ_login` datetime NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `username` (`username`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `administrators`
--

INSERT INTO `administrators` VALUES(1, 'demo', 0xecfe05ea39319cf7443d9c3d4b4e169a, '2007-04-09 19:30:40', '2007-04-09 19:30:40', 'phpMyAdmin', 'phpMyAdmin', '2007-10-09 22:44:50');

I came across this function, I will test it and respond back with results. Hopefully helps others.

 

function mysql_query_file($url, $ignoreerrors = false) {
		$file_content = file($url);
		$query = "";
		foreach($file_content as $sql_line) {
			$tsl = trim($sql_line);
			if (($sql_line != "") && (substr($tsl, 0, 2) != "--") && (substr($tsl, 0, 1) != "#")) {
				$query .= $sql_line;
				if(preg_match("/;\s*$/", $sql_line)) {
					$query = str_replace(";", "", "$query");
					$result = mysql_query($query);
					if (!$result && !$ignoreerrors) die(mysql_error());
						$query = "";
		   		}
		 	}
	   	}
	}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.