par
muriel » 18 août 2010, 23:39
Bonsoir Dunbar,
Avec plaisir...voici la structure:
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
--
-- --------------------------------------------------------
--
-- Structure de la table `tarif`
--
CREATE TABLE IF NOT EXISTS `tarif` (
`id` int(11) NOT NULL auto_increment,
`form1` text NOT NULL,
`constructeur` text NOT NULL,
`form2` text NOT NULL,
`form2gain` text NOT NULL,
`reference` text NOT NULL,
`form2bis` text NOT NULL,
`poids` text NOT NULL,
`form3` text NOT NULL,
`prix` text NOT NULL,
`form4` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=56 ;
--
-- Contenu de la table `tarif`
--
INSERT INTO `tarif` (`id`, `form1`, `constructeur`, `form2`, `form2gain`, `reference`, `form2bis`, `poids`, `form3`, `prix`, `form4`) VALUES
(1, '', 'HP', '', '<strong>', 'n° 336', ':', '40', '', '1.00', '€'),
(2, '', 'HP', '', '<strong>', 'n° 337', ':', '55', '', '1.00', '€'),
etc...
(55, '', 'Dell', '', '', 'tous modèles', ':', '37', '', '0.10', '€');
D'avance merci, Dunbar, pour ton aide.
Bonsoir Dunbar,
Avec plaisir...voici la structure:
[php]
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
--
-- --------------------------------------------------------
--
-- Structure de la table `tarif`
--
CREATE TABLE IF NOT EXISTS `tarif` (
`id` int(11) NOT NULL auto_increment,
`form1` text NOT NULL,
`constructeur` text NOT NULL,
`form2` text NOT NULL,
`form2gain` text NOT NULL,
`reference` text NOT NULL,
`form2bis` text NOT NULL,
`poids` text NOT NULL,
`form3` text NOT NULL,
`prix` text NOT NULL,
`form4` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=56 ;
--
-- Contenu de la table `tarif`
--
INSERT INTO `tarif` (`id`, `form1`, `constructeur`, `form2`, `form2gain`, `reference`, `form2bis`, `poids`, `form3`, `prix`, `form4`) VALUES
(1, '', 'HP', '', '<strong>', 'n° 336', ':', '40', '', '1.00', '€'),
(2, '', 'HP', '', '<strong>', 'n° 337', ':', '55', '', '1.00', '€'),
etc...
(55, '', 'Dell', '', '', 'tous modèles', ':', '37', '', '0.10', '€');
[/php]
D'avance merci, Dunbar, pour ton aide.