我正在尝试在 osCommerce 中创建一个表单并尝试使用所需的 tep_draw。
我的输入字段和单选按钮可以工作,但我在选择字段时遇到问题。我知道国家/地区输入字段错误,但不知道正确的 tep_draw_select 选项。
这就是我现在正在尝试的:
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td class="fieldKey"><div class="crosspiece95"></div><?php echo ENTRY_ADDRESS; ?></td>
<td class="fieldValue" width="100%"><?php echo tep_draw_input_field('address', '', 'class="input"'); ?></td>
</tr>
<tr>
<td class="fieldKey"><?php echo ENTRY_CITY; ?></td>
<td class="fieldValue"><?php echo tep_draw_input_field('city', '', 'class="input"'); ?></td>
</tr>
<tr>
<td class="fieldKey"><?php echo ENTRY_STATE; ?></td>
<td class="fieldValue"><?php echo tep_draw_input_field('state', '', 'class="input"'); ?></td>
</tr>
<tr>
<td class="fieldKey"><?php echo ENTRY_ZIP; ?></td>
<td class="fieldValue"><?php echo tep_draw_input_field('zip', '', 'class="input"'); ?></td>
</tr>
<tr>
<td class="fieldKey"><?php echo ENTRY_COUNTRY; ?></td>
<td class="fieldValue"><?php echo tep_draw_input_field('country', '', 'class="input"'); ?>
<option value="">Country...</option>
<option value="Afganistan">Afghanistan</option>
<option value="etc">ETC</option>
</select>
</td>
</tr>
</table>