A voir également:
- Json_encode(array) insertion in db
- Insertion liste déroulante excel - Guide
- Bp bc db - Forum Réseaux sociaux
- Insertion sommaire word - Guide
- Navigation in private - Guide
- Insertion signature word - Guide
20 avril 2013 à 16:21
21 avril 2013 à 09:40
moi j'ai mis bune variable session, ça me parait plus pratique
ex :
<form action="commander.php" method="post">
<input type="hidden" name="id_produit" value="132" />
<input type="button" name="commender" />
</form>
commander.php
<?php
if(isset($_POST['id_produit'])){
$_SESSION['panier'][] = $_POST['id_produit'];
$panier = $_SESSION['panier'];
$panier_json = json_encode($panier, JSON_FORCE_OBJECT);
"INSERT INTO table_commande (id_commande,contenu_panier) VALUES('0','$panier_json')"
}else{
echo "pas d'identifiant de produit";}
header("Location:ancienne_page");
?>
à tester !