Actually the # isn't the problem... but I don't know what is... here's the scoop.
here is the sql I am trying to enter:
CREATE TABLE packagers (
id mediumint(9) DEFAULT \'0\' NOT NULL auto_increment,
name varchar(225) NOT NULL,
address varchar(225) NOT NULL,
postal varchar(10) NOT NULL,
tel varchar(15) NOT NULL,
booked mediumint(9) DEFAULT \'0\' NOT NULL,
price float(5,2) DEFAULT \'0.00\' NOT NULL,
PRIMARY KEY (id)
);
#
Dumping data for table \'packagers\'
#
INSERT INTO packagers VALUES ( \'200000\', \'Anne\\'s Windy Poplars\', \'Cavendish\', \'C0A 1N0\', \'963-3166\', \'15\', \'34.50\');
INSERT INTO packagers VALUES ( \'200001\', \'Cavendish Maples\', \'RR#2 Hunter River\', \'C0A 1N0\', \'963-5689\', \'7\', \'37.25\');
INSERT INTO packagers VALUES ( \'200002\', \'Avonlea Cottages\', \'Cottonwood Drive\', \'C1A 3L4\', \'566-6598\', \'6\', \'33.95\');
Any help would be appreciated.
Thanks