Création de la table produits en ligne sur MySQL (avec phpMyAdmin )
CREATE TABLE `produits` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
`nom` TEXT NOT NULL,
`prix` FLOAT NOT NULL,
`image` TEXT NOT NULL,
`categorie` TEXT NOT NULL,
`courtdesc` BLOB NOT NULL,
`longuedesc` BLOB NOT NULL,
`statut` INT NOT NULL
);