View Single Post
  #30  
Old 24th May 2011, 07:36
Omenke Omenke is offline
Senior Member
 
Join Date: May 2010
Hungary
Posts: 35
Default re
just so much out of the sql

PHP Code:
-- --------------------------------------------------------

--
-- 
Structure de la table `bonus`
--

CREATE TABLE IF NOT EXISTS `bonus` (
  `
idint(5NOT NULL AUTO_INCREMENT,
  `
bonusnamevarchar(50NOT NULL DEFAULT '',
  `
pointsdecimal(5,1NOT NULL DEFAULT '0.0',
  `
descriptiontinytext NOT NULL,
  `
artvarchar(10NOT NULL DEFAULT 'traffic',
  `
mengebigint(20unsigned NOT NULL DEFAULT '0',
  
PRIMARY KEY (`id`)
ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;

--
-- 
Contenu de la table `bonus`
--

INSERT INTO `bonus` (`id`, `bonusname`, `points`, `description`, `art`, `menge`) VALUES
(8'1 Jeton streaming''600.0''Quand vous avez acquis les points bonus requis, vous pouvez les échanger contre des jetons. Les points seront retirer de votre banque de point et les jetons seront automatiquement ajuster''cinema'1); 
Reply With Quote
The Following User Says Thank You to Omenke For This Useful Post:
turktiger (24th May 2011)