Samples for Vegetarian Recipes Database

Table Structure:
CREATE TABLE `vegrecipes` ( `id` int(4) NOT NULL auto_increment, `category` varchar(25) NOT NULL default '', `title` varchar(64) NOT NULL default '', `recipe` text NOT NULL, PRIMARY KEY (`id`), FULLTEXT KEY `forsearch` (`category`,`title`,`recipe`) ) TYPE=MyISAM AUTO_INCREMENT=3766 ;

Samples: