Bonjour et bonne année à tout le monde,
j'ai un problème de redirection vers ma page panier.php. J'utilise header location mais cela ne marche pas.
page panier.php
<?php
session_start();
?>
<div class="bouton"><a href="modifierPanier.php">Ajouter au panier</a></div>
<p>Nombre d'article(s) :
<?php
echo $_SESSION['nombreArticlesPanier'];
?>
Page modifierPanier.php
<?php
session_start();
/* On ajoute un produit dans le panier */
if (!isset($_SESSION['nombreArticlesPanier']) || empty($_SESSION['nombreArticlesPanier'])){
$_SESSION['nombreArticlesPanier']=1;
}
else {
$_SESSION['nombreArticlesPanier']++;
}
header('Location:panier.php');
?>
D'avance merci pour votre aide
j'ai un problème de redirection vers ma page panier.php. J'utilise header location mais cela ne marche pas.
page panier.php
<?php
session_start();
?>
<div class="bouton"><a href="modifierPanier.php">Ajouter au panier</a></div>
<p>Nombre d'article(s) :
<?php
echo $_SESSION['nombreArticlesPanier'];
?>
Page modifierPanier.php
<?php
session_start();
/* On ajoute un produit dans le panier */
if (!isset($_SESSION['nombreArticlesPanier']) || empty($_SESSION['nombreArticlesPanier'])){
$_SESSION['nombreArticlesPanier']=1;
}
else {
$_SESSION['nombreArticlesPanier']++;
}
header('Location:panier.php');
?>
D'avance merci pour votre aide