you are getting that error in phpmadmin then too .. ?? i thought it was working fine in phpadmin.
i think you need back-ticks around your table and column names
PHP Code:
CREATE TABLE `Friday` (
`id` TINYINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ,
`start_time` INT( 11 ) UNSIGNED DEFAULT '0' NOT NULL ,
`end_time` INT( 11 ) UNSIGNED DEFAULT '0' NOT NULL ,
`time_label` TEXT NOT NULL ,
`image` TEXT NOT NULL ,
`info_link` TINYTEXT NOT NULL ,
PRIMARY KEY ( `id` )
);