
04-02-2008, 12:33 AM
|
|
 | |
Banned
|
|
 X-Adept
|
|
Join Date: Jan 2008
Posts: 486
|
|
|
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>
|
|