ello Posted April 20, 2011 Report Share Posted April 20, 2011 Hallo, ich hab sehr viel gesucht und ausprobiert. Für die Attribute eines Artikels habe ich aus der Dropdown liste eine radiobutton auswahl gemacht. Nun möchte ich anhand der attributes_id das hinterlegte Bild neben den radiobutton ausgeben. Ich weiß auch wie es theoretisch geht, aber ich versteh nicht wie die datenbank abfrage machen soll. Ich will das feld attributes_images aus der tabelle _plg_products_attributes an der stelle id = attributes_id(radiobutton). Alles wird ja in ms_default.html gemacht, kann mir bitte einer sagen wie ich die sql abfrage machen kann. Danke sehr. Link to comment Share on other sites More sharing options...
ello Posted April 21, 2011 Author Report Share Posted April 21, 2011 Hier ist noch der Quellcode der ms_default.html Kann mir bitte jemand helfen? {if $options!=''} <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td> <table width="100%" border="0" cellpadding="2" cellspacing="2"> {foreach name=outer item=options_data from=$options} <!-- SELECT !--> <tr> <td width="200" align="right"> <b>{$options_data.text}:</b> </td> <td> {form type=form name=product action='dynamic' link_params=getParams method=post} {form type=hidden name=action value=select_ms} {foreach key=key_data item=item_data from=$options_data.data} {if $item_data.id !=0} <input name="id[{$options_data.id}]" type="radio" value="{$item_data.id}" onchange="this.form.submit();" {if $item_data.selected} checked="checked" {/if}>{$item_data.id}<br> {/if} {/foreach} {form type=formend} </td> </tr> {/foreach} </table> </td> <td>{if $link_reset}<a href="{$link_reset}">{$image_reset}</a>{/if}</td> </tr> </table> {/if} Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.