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>