[ic] checkout page

interchange-users@icdevgroup.org interchange-users@icdevgroup.org
Tue Feb 25 14:03:01 2003


Hi,
   I am trying to add a new part to the checkout page that will capture the sales reps name if there was one.  I added a field to the database userdb calles sales_person.  below is my code. I pretty much just coppied the email code but it dosent want to work,  thanks for your help.
 
snip
<!--start new code for sales rep capture -->
<tr class="contentbar2">
	    <td class="contentbar2">Sales Rep.</td>
	    <td colspan=3 class="contentbar2">&nbsp;</td>
  	  </tr>
  	  <tr>
	    <td align="center" valign="middle" class="contentbar1">
	      <SELECT NAME=sales_person>
	      <OPTION VALUE="Online">Online
	      <OPTION [selected name=sales_person value=Jerry Geary] VALUE="Jerry Geary">Jerry Geary
	      </SELECT>
	    </td>
	    <td class="contentbar1"><B>If you were helped by a sales person please choose his/her name.</B></td>
	    <td class="contentbar1">&nbsp;</td>
	    <td class="contentbar1">&nbsp;</td>
          </tr>
<!--end new code for sales rep capture -->