Jump to content

creating tables - page not found?!


jarv

Recommended Posts

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!

Link to comment
https://forums.phpfreaks.com/topic/108102-creating-tables-page-not-found/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.