include("admin/db.inc.php");
$connection = dbConnect();
//recuperation de l'id de sous rubrique
$affiche=1;
//recuperation des produits
$sql = "SELECT * FROM produit_ouapa WHERE id_sousrubrique='$ids' AND en_ligne=1 ORDER BY titre_produit_fr ASC";
$result = dbQuery($sql,$connection);
$k = dbNumrows($result);
//si produits trouvés
if ($k > 0)
{
echo "
";
//recuperation des données produits
for ($i=0 ; $i < $k ; $i++)
{
$row = dbFetchArray($result,$i);
$id = $row["id_produit_karinea"];
$titre = $row["titre_produit_fr"];
$descriptif = nl2br($row["descriptif_produit_fr"]);
$r = 0;
$q = 0;
while($r<11){
if($row["ref".$r."_produit"]!=''){
$prix = $row["prix".$r."_produit"];
$promo= $row["promo".$r."_produit"];
/*echo "prix : ".$prix."
";
echo "promo : ".$promo."
";*/
$q ++;
}
$r++;
}
//affichage en 2 colonnes
$option = $row["option_produit_fr"];
$photo = "images/thumbs.php?img=produit/" . $id . "_produit.jpg&x=120&y=120";
//test si promo
if ($promo!=0){
$affichePrix="".$prix." € ".$promo." €"; }
else{
$affichePrix="".$prix." €";
}
//tant qu'il y a des produits
//cellule de gauche
if ($affiche==1){
echo "
$titre $affichePrix "; if (($descriptif != "") || ($option != "")) { echo "En savoir plus | ";
}else{
echo "";
}
$affiche=2;
//echo $affiche;
}else{
if ($affiche==2){
$affiche=1;
//cellule de droite
echo "
$titre $affichePrix "; if (($descriptif != "") || ($option != "")) { echo "En savoir plus |
";
}else{
echo "";
}
}
$affiche=1;
//echo $affiche;
}
}
//test si la ligne est bien complète
if ($k==$i){
//echo $affiche;
if($affiche==2){
echo "
|
";
}
echo "
";
}
}
//si pas de produits
else echo "Aucun produit n'est disponible actuellement.
";
?>