update and insert using checkboxes. Help!!
I need to be able to insert and/or update into the database. I am using MySQL and CF8. What is the query for updating and also inserting the data. I am a novice with coldfusion. Here is my output below and what needs to get inserted into the database where programid = #programid#. Thanks in advance.
<cfoutput query="getProducts" startrow="#url.startRow#" maxrows="#maxrows#">
<tr>
<td><input type="checkbox" value="#productID#" name="productid" <cfif getProducts.price neq "">checked</cfif></td>
<td>#getProducts.modelnumber#</td>
<td>#getProducts.modeldescription#</td>
<td>#getProducts.department#</td>
<td>#getProducts.categoryname#</td>
<td><input type="text" name="price" value="#dollarformat(getProducts.price)#"></td>
</tr>
</cfoutput>
