View Single Post
  #2  
Old 04-02-2008, 12:33 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: Change Text field to drop down in Product_details.tpl?

PHP Code:
<select name="type">
        <
option value="Gas" {if $product.type eq "Gas"}selected{/if}>Gas</option>
        <
option value="Electric" {if $product.type eq "Electric"}selected{/if}>Electric</option>
        <
option value="Common" {if $product.type eq "Common"}selected{/if}>Common</option>
 </
select
Reply With Quote