b00ng Posted May 4, 2004 Report Share Posted May 4, 2004 Hi Bin mal wieder jetzt vor einen Problem in der RC1. Habe es ja endlich geschafft den bestand anzuzeigen in der product_listing Jetzt habe ich mir noch die Ampel mit rein gemacht? nur das Problem ist er nimmt mir jetzt immer den letzten wert von der Produkt liste? also h?tte ich bestand 1 dann gr?n oder bei 0 rot. Kann es jetzt noch daran liegen das ich die Ampel auch in arry packen muss ?? und eine abfrage immer auf die richtige id machen muss ?? oder gibt es da sonst noch ne l?sung? der code von der ampel php????. $prod_quantity = $listing['products_quantity']; $ampel = ""; if ($prod_quantity >= 1){ $ampel = 'Artikel Verf?gbar <img src="images/ampel/gruen.gif" border="0" width="20" height="20"></a>'; }else{ $ampel = 'Artikel nicht da;) <img src="images/ampel/rot.gif" border="0" width="20" height="20"></a>'; danke f?r die hilfe die ich ja vorhin schon gut hatte Link to comment Share on other sites More sharing options...
Guest HHGAG Posted May 4, 2004 Report Share Posted May 4, 2004 W?rd ich auch mal sagen -> array -> Product_ID Link to comment Share on other sites More sharing options...
b00ng Posted May 4, 2004 Author Report Share Posted May 4, 2004 hmm meinst du k?nntest mir da ein bisschen helfen??? weil da bin ich halt mit meinen php wissen am ende?. oder soll ich die Ampel irgendwie in der produkt_listing mit rein machen?? auf jeden fall auf die idea mit den arry bin ich auch gekommen Link to comment Share on other sites More sharing options...
Guest HHGAG Posted May 4, 2004 Report Share Posted May 4, 2004 Versuchs erstmal mit der product_listing, denn dort wird ja der artikel aufgerufen, somit sollte dein Problem behoben sein, ansonsten gucken wir gleich mal weiter. Link to comment Share on other sites More sharing options...
b00ng Posted May 4, 2004 Author Report Share Posted May 4, 2004 okay habe es mal mit einbauen probiert also entweder ich habe es wieder falsch eingebaut oder es geht nicht. wie w?rdest du das ganze einbauen ?? Link to comment Share on other sites More sharing options...
Elanor Posted May 4, 2004 Report Share Posted May 4, 2004 Hallo, das kannst du ?ber die Html Datei l?sen <td width="32" rowspan="2" valign="top" style="border-bottom: 0px solid; border-color: #cccccc;"><a href="{$module_data.PRODUCTS_LINK}"><img src="{$module_data.PRODUCTS_IMAGE}" border="0"></a></td> <td width="679" height="21" valign="top" class="main"><strong><a href="{$module_data.PRODUCTS_LINK}">{$module_data.PRODUCTS_NAME}</a></strong></td> <td width="10%" rowspan="2" align="right" valign="middle"> <font size="1">{if $module_data.PRODUCTS_QUANTITY <= 0} <a href="javascript:info()"><img src="images/rot.jpg" width="15" border="0"></a> {elseif $module_data.PRODUCTS_QUANTITY < 5} <a href="javascript:info()"><img src="images/gelb.jpg" width="15" border="0"></a> {elseif $module_data.PRODUCTS_QUANTITY >= 5} <a href="javascript:info()"><img src="images/green.jpg" width="15" border="0"></a> {/if} </font></td> </tr> Mehr ist nicht notwendig Viele Gr?sse Andi Link to comment Share on other sites More sharing options...
b00ng Posted May 4, 2004 Author Report Share Posted May 4, 2004 wow ging ja richtig schnell... soll ich die datei auch includen lassen oder soll das ganze in der product_listing.html mit rein ?? Link to comment Share on other sites More sharing options...
Elanor Posted May 4, 2004 Report Share Posted May 4, 2004 nur ins listing.html und in der info.html gehts genauso wenns dort gew?nscht ist, nur die Variable f?r den Lagarbestand hei?t anders Ab {if ist der Code f?r dich interessant!! Link to comment Share on other sites More sharing options...
b00ng Posted May 4, 2004 Author Report Share Posted May 4, 2004 Okay super danke geht.... noch mal danke :bounce: Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.