My Favorite Pages module

Please login first to manage your favorite pages.
"thy for your efforts, you really have a lot of nice stuff on your site, much appreciated. keep going ;)"
Steven S.
CD Chili Code plugin - MySQL Print E-mail
(2 - user rating)

Demo for Core Design Chili Code plugin - MySQL.

CREATE TABLE fruits (
  type varchar(10) NOT NULL,
  variety varchar(20) NOT NULL,
  price decimal(5,2) NOT NULL default 0,
  PRIMARY KEY  (type,variety)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

insert into fruits(type, variety, price) values
('apple',  'gala',       2.79),
('apple',  'fuji',       0.24),
('apple',  'limbertwig', 2.87),
('orange', 'valencia',   3.59),
('orange', 'navel',      9.36),
('pear',   'bradford',   6.05),
('pear',   'bartlett',   2.14),
('cherry', 'bing',       2.55),
('cherry', 'chelan',     6.33);

 

Article Supporters: 0 (total)