Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of Matt Saragusa | > | A Simple MySQL Class | > | sample_table.sql | > | Download | ||
|
Download |
CREATE TABLE `Items` ( `itemID` int(11) NOT NULL auto_increment, `name` varchar(32) NOT NULL, `description` tinytext NOT NULL, `catID` int(11) NOT NULL, PRIMARY KEY (`itemID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; |