OK. Here is the code from the order page:

<tr> <cfoutput query="show_pricesA"> 
                    <td bgcolor="##F9F9F7"><font size="1" face="Verdana, Arial, 
Helvetica, sans-serif">#ItemID#</font></td>
                    <td bgcolor="##F9F9F7"><font size="1" face="Verdana, Arial, 
Helvetica, sans-serif">#Description#</font></td>
                    <td bgcolor="##F1F0EB"><div align="center"><font size="1" 
face="Verdana, Arial, Helvetica, sans-serif">$#FiftyTwenty#</font> 
                      </div></td>
                    <td width="70" bgcolor="##CBC8B4"><div align="center"><font 
size="1" face="Verdana, Arial, Helvetica, sans-serif"> 
                      <input name="quantity#ItemID#" type="text" id="quantity#ItemID#" 
size="8">
                      <input type="hidden" name="ordereddesc" value="#description#">
                      <input type="hidden" name="orderedID" value="#ItemID#">
                      </font></div></td>
                  </tr></cfoutput>
              </table>


And here is what is on the action page:

Thank you! The following order has been placed: <br>
        <cfloop query="get_items">
        <cfif IsDefined("quantity" & ItemID) IS "YES">
        <cfset Order_value=#Evaluate("quantity" & ItemID)#>
        <cfif Order_value NEQ "" AND Order_value GT 0>
        <table width="459" height="18" border="0" cellpadding="0" cellspacing="0">
              <cfoutput><tr> 
                <td width="106"><font size="1" face="Verdana, Arial, Helvetica, 
sans-serif">#form.orderedID#</font></td>
                <td width="246"><font size="1" face="Verdana, Arial, Helvetica, 
sans-serif">#form.ordereddesc#</font></td>
                <td width="107"><font size="1" face="Verdana, Arial, Helvetica, 
sans-serif"><strong>#Order_value#</strong></font></td>
              </tr></cfoutput>
            </table>
        </cfif></cfif></cfloop>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Reply via email to