so say the table was users i would do this??
<?
if(!table_exist(forum))
{
mysql_query("CREATE TABLE 'users' (primary key(user_id) [user_id INT(smilie NOT NULL AUTO_INCREMENT,
user_name VARCHAR(30) NOT NULL,
user_pass VARCHAR(255) NOT NULL,
user_email VARCHAR(255) NOT NULL,
user_date DATETIME NOT NULL,
user_level INT(smilie NOT NULL,
UNIQUE INDEX user_name_unique (user_name),
) TYPE=INNODB; ] ");
}
?>
is that correct??
And how would i insert this into its own install.php page so that it works?? like im trying to make an installer like other forum software like phpbb mybb smf etc.
there are pages that link to them all. unless you mean like have it so members can make catagorys witch i dont see why i would do that. That would defeat the admin purpose.
and the point of this is to make an installer so that it auto creates the sql tables into the mysql db but also register the admin during the install process so that they dont have to do it all by hand.
and take a long time to install the sql tables and everything like i had to do.This script shows up proper in firefox though.
_____________________________
All the files that i have were source files. They had all the same page info that i woulda had to put into documents anyway so i just downloaded the tut source to make it easier. Then im making it better. Thats kinda the point. and so i have my own bb to release.
does anyone know how i can make an installer that allows me to import the msysql info into the database automatically thorugh the installer with the administor account??
i dont care if multiple people tell me or if they send me a link to a place where it tells you how to do it then that works too.