Aide au projet spx : plugins pour pluxml - Forums pluxml
Vous n'êtes pas identifié(e).
Pages : 1
Bonsoir
dans ma table Icon je fais des test pour afficher le nom de la categorie du produit
j'ai ajouté
[== PHP ==]
#category
mais j'ai le numéro d'identifiant de la categorie, comment je peu faire pour afficher la categorie ou il appartien le produit??
ici
merci
Hors ligne
Salut,
Au lieu d'avoir une sortie de type $a[0], $a[1].... Tu peux avoir une sortie associative de type $a[id1], $a[id2] ou l'id est l'id du record bien sur.
[== Indéfini ==]
[== PHP ==]
$o= array();
$o["table"]="produits";
$o["out"]="array";
$fiches = $plxShow->callHook('spxdatas::getData',$o);
# extraction des types ou category dans un tableau associatif (id)
$o2 = array();
$o2["table"]="types";
# sortie associative
$o2["out"]="array_asso";
$tab_types = $plxShow->callHook('spxdatas::getData',$o2);
foreach ($fiches as $fiche) {
// Type (neuf/occasion) : remplacement de l'identifiant par la valeur
$id_fiche = $fiche["Type"];
$fiche["Type_name"] = $tab_types[$id_fiche]["type_neuf_occasion"];
// Affichage de la fiche
$txt = "<div id='produit" . $fiche["produits_id"] . "' class='fiche'>";
$txt .= "<h3>Modèle : " . $fiche["Modèle"] . "</h3>";
$txt .= "Type : " . $fiche["Type_name"] . "<br />";
$txt .= "Prix : " . $fiche["Prix"] . "</div>";
echo $txt;
}
Tu vois le truc ?
jéjé
Petit à petit l'oiseau fait son nid.
creation de site web : http://secretsitebox.fr/ - création artistique : http://art.je-evrard.net
Hors ligne
merci jéjé
je vais étudier ça dans le détail
Hors ligne
Pages : 1