i am trying to add some extra options to the ups module, actually i am merging upsxml into my ups module and want the fields to show in admin, my ups module uses a table from the database, i have tried to add this field
Code:
<tr id="ups_key_header" style="display: none;">
				<td rowspan="2" class="AdvancedShipperConfigLabel"><label for="ups_key">UPS Access Key</label></td>
				<td class="AdvancedShipperConfigDesc">
					Enter the XML access key assigned to you by UPS.
				</td>
			</tr>
			<tr id="ups_key_field" style="display: none;">
				<td class="AdvancedShipperConfigField">
					<?php echo zen_draw_input_field('ups_key', $ups_key, 'style="width: 13em;" maxlength="16" id="ups_key" class="Textfield" onKeyPress="advshipperCheckEnterPressed(event)"'); ?>
				</td>
			</tr>
to db and module but it will not show.
How do i make it show?