jarv Posted May 31, 2008 Share Posted May 31, 2008 I just put $SQL="CREATE TABLE assessment ( ID int NOT NULL auto_increment, Assessor varchar(50) NOT NULL default '', page varchar(100) binary NOT NULL default '', Assessment longtext(0) binary NOT NULL default '', assignedto varchar(100) binary NOT NULL default '', section varchar(15) binary NOT NULL default '', grade int(11) binary NOT NULL default '', action longtext(0) binary NOT NULL default '', PRIMARY KEY (ID), )"; mysql_query($SQL); $SQL1="CREATE TABLE users ( ID int NOT NULL auto_increment, Assessor varchar(50) NOT NULL default '', login varchar(100) binary NOT NULL default '', password varchar(100) binary NOT NULL default '', PRIMARY KEY (ID), )"; mysql_query($SQL1); in my config.php file which is an include on my index.php and nothing happens, I get: Page cannot be found! Quote Link to comment Share on other sites More sharing options...
Hooker Posted May 31, 2008 Share Posted May 31, 2008 more of a PHP question tha mysql.. Quote Link to comment Share on other sites More sharing options...
jarv Posted May 31, 2008 Author Share Posted May 31, 2008 I just found out that I have not turned on php scipts on my host! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.