Gestion des Produits
0 && $img) { $id = empty($products) ? 1 : (max(array_column($products, 'id')) + 1); $products[] = ['id'=>$id, 'name'=>$name, 'price'=>$price, 'image'=>$img]; file_put_contents($dataFile, json_encode($products, JSON_PRETTY_PRINT|JSON_UNESCAPED_UNICODE)); header('Location: cms.html?added=1'); exit; } } if (isset($_GET['added'])) { echo '✓ Produit ajouté avec succès !
';
}
?>
Produits existants
| ID | Nom | Prix | Image |
|---|---|---|---|
| = htmlspecialchars($product['id']) ?> | = htmlspecialchars($product['name']) ?> | €= number_format($product['price'], 2, ',', ' ') ?> | Voir l'image |