I got a txt file from someone who designed me an SQL database
(# phpMyAdmin SQL Dump
# version 2.5.3
# #
# Host: localhost
# Generation Time: Apr 10, 2004 at 04:14 PM
# Server version: 4.0.11
# PHP Version: 4.3.1
#
# Database : `dda_db`
#
# --------------------------------------------------------
#
# Table structure for table `about`
#
DROP TABLE IF EXISTS `about`;
CREATE TABLE `about` (
`id_about` int(11) NOT NULL auto_increment,
`paragraph1` longtext NOT NULL,
`paragraph2` longtext NOT NULL,
`paragraph3` longtext NOT NULL,
`paragraph4` longtext NOT NULL,
PRIMARY KEY (`id_about`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
# --------------------------------------------------------)
That along with a lot more, how do I got about getting this ready for work, is there a way I can just copy and paste all the info from the txt file into a program and it will create the database?
(# phpMyAdmin SQL Dump
# version 2.5.3
# #
# Host: localhost
# Generation Time: Apr 10, 2004 at 04:14 PM
# Server version: 4.0.11
# PHP Version: 4.3.1
#
# Database : `dda_db`
#
# --------------------------------------------------------
#
# Table structure for table `about`
#
DROP TABLE IF EXISTS `about`;
CREATE TABLE `about` (
`id_about` int(11) NOT NULL auto_increment,
`paragraph1` longtext NOT NULL,
`paragraph2` longtext NOT NULL,
`paragraph3` longtext NOT NULL,
`paragraph4` longtext NOT NULL,
PRIMARY KEY (`id_about`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
# --------------------------------------------------------)
That along with a lot more, how do I got about getting this ready for work, is there a way I can just copy and paste all the info from the txt file into a program and it will create the database?