I want to make a install script to run this query into the mysql database
PHP Code:
CREATE TABLE `gebruikers` (
`id` int(5) NOT NULL auto_increment,
`nickname` varchar(100) NOT NULL default '',
`wachtwoord` varchar(100) NOT NULL default '',
`email` varchar(100) NOT NULL default '',
`actief` tinyint(1) NOT NULL default '0',
`ingelogd` tinyint(1) NOT NULL default '0',
`ip` varchar(15) NOT NULL default '',
`rang` varchar(100) NOT NULL default 'user',
PRIMARY KEY (`id`)
) TYPE=MyISAM;
In the config file I've already introduced data for the database. tOnly you have to do is include the config.php file. bud how do i mak a install script!?!