fauer Posted April 15, 2004 Report Share Posted April 15, 2004 hi, m?chte gerne in der produkt_listing.php f?r die mengenauswahl nicht die werte selber eingeben, sonder die st?ckzahl mit einem selectfeld vorgeben. z.b 10,20,30 usw. diesen code habe ich schon bearbeitet, es kommt auch ein feld wo ich den wert noch wie vorher eingeben kann. $cart_button = xtc_draw_selection_field('products_qty', '1','') . ' ' . xtc_draw_hidden_field('products_id', $listing['products_id']) . xtc_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); wie m?sste ich das ab?ndern, damit das so funktioniert? lg Link to comment Share on other sites More sharing options...
mzanier Posted April 15, 2004 Report Share Posted April 15, 2004 mal so ins blaue. $qty_array=array('id'=>0,'text'=>1 blablabla array f?llen) xtc_draw_pull_down_menu('products_qty', $qty_array, '0') Link to comment Share on other sites More sharing options...
fauer Posted April 15, 2004 Author Report Share Posted April 15, 2004 mal so ins blaue war schon echt gut :-) vielleicht kannst du mir auch noch etwas nachhilfe in sachen php geben :-) $qty_array=array('id'=>0,'text'=>'10', '20', '30'); $cart_button = xtc_draw_pull_down_menu('products_qty', $qty_array, '0') . ' ' . xtc_draw_hidden_field('products_id', $listing['products_id']) . xtc_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); bekomme bei den produkten ein dropdownmen? angezeigt doch leider steht da nur 2 und 3 zur auswahl... Link to comment Share on other sites More sharing options...
mzanier Posted April 15, 2004 Report Share Posted April 15, 2004 for ($i=0;$i<10;$i++) { $qty_array[]=array('id'=>$i,'text'=>$i+1); } Link to comment Share on other sites More sharing options...
fauer Posted April 15, 2004 Author Report Share Posted April 15, 2004 so wird in einer for-schleife raufgez?hlt, ich m?chte aber das nur der wert 30,60,90,120,150 drinnen steht danke f?r die geduld.. Link to comment Share on other sites More sharing options...
mzanier Posted April 15, 2004 Report Share Posted April 15, 2004 ja mei dann halt $count=''; for ($i=0;$i<5;$i++) { $count+=30; $qty_array[]=array('id'=>$count,'text'=>$count); } Link to comment Share on other sites More sharing options...
fauer Posted April 15, 2004 Author Report Share Posted April 15, 2004 danke!!! ganz lieb Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.