Thanks so much Craig! The help you offered is great and Im really looking forward to implementing this software as it meets everything we need at our school.
The file structure was definitely something I was overlooking! By moving the folder outside to the main root and removing the database prefix I was able to to view the installation script.
DROP TABLE IF EXISTS `school`;
CREATE TABLE `school` (
`school_id` int(6) unsigned NOT NULL auto_increment,
`name` varchar(255) NULL,
`website` varchar(255) NULL,
`colour` char(6) default NULL,
`logo` varchar(40) NULL,
`bia` int(3) unsigned NULL,
`d_columns` enum('periods','rooms','days') NULL,
`displaytype` enum('room','day') NULL,
PRIMARY KEY (`school_id`)
);