Error in creating table in MS SQL using PHP script;
code is as below:
$qstr="CREATE TABLE Catagory(catID int(4) NOT NULL, catName varchar (15) NOT NULL,description text NULL PRIMARY KEY catID)";
$result = $conn->Execute($qstr);
$qstr="CREATE TABLE Item(itemID int(4) NOT NULL...