41,000 free recipe database

September 8, 2010


41,000 free recipe database

41,000 free recipe database

Author : Collection
Price : $7
Rights : Master Resale Rights
Category : mySQL database
Share to your friend

A huge collection of free recipes database in my sql format. You can used this free recipes to create your instant huge recipe website and offer free recipes to your customers.

The total recipe in the database is more than 41,000 recipes.

Here is the data structure of the database.


--
-- Table structure for table `categories`
--

CREATE TABLE IF NOT EXISTS `categories` (
`id` int(11) NOT NULL auto_increment,
`category` varchar(100) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=56 ;

-- --------------------------------------------------------

--
-- Table structure for table `comments`
--

CREATE TABLE IF NOT EXISTS `comments` (
`id` bigint(20) NOT NULL auto_increment,
`recipeid` varchar(15) NOT NULL default '',
`poster` varchar(20) NOT NULL default '',
`site` varchar(255) NOT NULL default '',
`email` varchar(60) NOT NULL default '',
`comment` text NOT NULL,
`status` varchar(7) NOT NULL default 'active',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;

-- --------------------------------------------------------

--
-- Table structure for table `rating`
--

CREATE TABLE IF NOT EXISTS `rating` (
`id` bigint(20) NOT NULL auto_increment,
`recipeid` varchar(15) NOT NULL default '',
`rating` double NOT NULL default '0',
`ip` varchar(25) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=63 ;

-- --------------------------------------------------------

--
-- Table structure for table `recipes`
--

CREATE TABLE IF NOT EXISTS `recipes` (
`id` bigint(11) NOT NULL auto_increment,
`Category` varchar(255) default NULL,
`Name` varchar(255) default NULL,
`Recipe` text,
`views` int(11) NOT NULL default '0',
`comments` int(11) NOT NULL default '0',
`addedby` varchar(25) NOT NULL default '',
`ratings` float NOT NULL default '0',
`recactivation` varchar(10) NOT NULL default '1',
PRIMARY KEY (`id`),
FULLTEXT KEY `Category` (`Category`,`Name`,`Recipe`),
FULLTEXT KEY `Name` (`Name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=41761 ;


Sample data entry

INSERT INTO `recipes` (`id`, `Category`, `Name`, `Recipe`, `views`, `comments`, `addedby`, `ratings`, `recactivation`) VALUES(120, 'Appetizers', 'Apricot & Cucumber Soup', '

6 oz Dried apricots

1 1/2 pt Vegetable stock

1 ea Orange, juiced & rind grated

1 md Cucumber

1 md Onion, finely chopped

1 tb Vegetable oil

2 ts Curry powder

Salt & pepper 2 tb Pumpkin seeds, to garnish

Soak the apricots in the stock with the grated orange rind for 2 to 3 hours. Add the orange juice & simemr for 45 minutes. Cut 8 thin slices from the cucumber & reserve for garnish. Peel & roughly chop the remainder. Fry the onion in the oil over medium heat for 3 to 4 minutes, stirring once or twice. Stir in the curry powder & chopped cucumber & cook for 2 minutes. Puree the apricots with the stock & the cucumber mixture. Return to the pan & heat gently. Season with salt & pepper. Serve the soup garnished with floating slices of cucumber topped with the pumpkin seeds. Black rye bread makes a good accompaniment. Pamela Westland, "Fruit"


more Free recipes - Free scripts', 143, 0, 'Admin', 0, '1');
INSERT INTO `recipes` (`id`, `Category`, `Name`, `Recipe`, `views`, `comments`, `addedby`, `ratings`, `recactivation`) VALUES(121, 'Appetizers', 'Apricot Raisin Spread Davis', '

8 oz Cream cheese, cut into bits

-softened 1/2 c Apricot jam

1/2 c Golden raisins

-walnut halves, garnish In a food processor blend together the cream cheese and the jam until the mixture is smooth; add the raisins and pulse the motor until the mixture is just combined. Transfer the spread to a ramekin or small decorative bowl and chill it for 1 hour. Garnish the spread with the walnut halves and serve it with crackers. Makes about 1 1/2 cups.


more Free recipes - Free scripts', 116, 0, 'Admin', 0, '1');
INSERT INTO `recipes` (`id`, `Category`, `Name`, `Recipe`, `views`, `comments`, `addedby`, `ratings`, `recactivation`) VALUES(122, 'Appetizers', 'Arame-Stuffed Mushroom Caps', '

1 c EDEN Arame

-- rinsed and soaked 18 lg Fresh mushrooms

1 ts EDEN Sesame Oil

1 md Onion

1/4 c EDEN Mirin

1 Lemon, juiced

2 tb EDEN Shoyu or Tamari

1 ts Ginger juice

- (grate ginger and - squeeze out juice) Fresh parsley, minced ---------------------------------TO GARNISH--------------------------------- Red pepper or lemon slice Soak Arame for 10 minutes. Rinse well and drain. Rinse mushrooms and remove stems. Place in baking dish. Dice stems and set aside. Place Arame with soaking water in small sauce pan. If necessary add more water to cover. Bring to boil and simmer for 15 minutes. Drain. Squeeze out liquid from Arame and mince. Heat oil in small pan and saute onion and mushroom stems for 3-5 minutes. Add Arame. Combine Mirin, Shoyu, lemon, and ginger juice. Pour half over Arame mixture and simmer until liquid evaporates. Stuff mushroom caps with Arame mixture; pour remaining marinade over mushroom caps. Cover and bake at 350 F for 20-25 minutes. Garnish. Be careful not to overcook; mushrooms will shrink. by Mary Estelle Prep Time: 40 minutes Yield: 6 Servings Sea vegetables ran be added to soups or salads, cooked alone or with other vegetables, and even brewed into teas. Their versatility in the kitchen is as wide as the ocean. When dried, the succulence and qualify of sea vegetables is not as apparent as when fresh, so it is important to choose a brand you can trust. Eden (TM) brand sea vegetables are the highest quality available, harvested from clean Northern waters. Copyright 1995 Eden Foods, Inc.


more Free recipes - Free scripts', 1154, 3, 'Admin', 2, '1');

Subscribe Now