Ask a Question related to Macromedia ColdFusion, Design and Development.
-
roshea #1
Insert Records from checkboxes
Hi,
I would like to be able to insert multiple records into a database using
checkboxes.
A query is used to display the checkboxes.
How can I insert data into a table when a user selects multiple checkboxes?
Thanks
Roslyn
<cfloop query="Query1">
<cfinput type="Checkbox" Name="Test_#Query1.ID#" label="#Query1.Name#">
</cfloop>
roshea Guest
-
Deleting Multiple Records using Checkboxes
Hi I wonder if anyone could help, I am trying to create a multiple delete page using checkbox's and it just will not work, I keep getting the... -
delete mulitple records with checkboxes
i have a recordset with a looped region and checkboxes each checkbox has the individual record id assigned to it my questions is what SQL command... -
Update multiple records using checkboxes
Searched the NG but no luck. Im displaying records from an Access2000 db in a table. The table is within a form and each record(row) has a... -
Dynamic checkboxes and INSERT into DB
"Frank Collins" <fcollins@mhca.com> wrote in message news:094101c352a8$7ca66990$a401280a@phx.gbl... Hmm..so you get your companyID on the same... -
Deleting Multiple Records selected by checkboxes
I have tried in vain after using 2 books - Prof ASP 3.0 and the compplete Reference for DWMX and about 8 different tutorial sites on the web that... -
blewis #2
Re: Insert Records from checkboxes
If you are using distinct names for each checkbox, then you need to run the
same query on the processing page and loop through them looking for a value.
Remember that checkboxes are not defined if they are not checked. One thing
you may want to check on in your code is that these checkboxes have no value.
You will want to add that.
So do this:
<cfloop query="Query1">
<cfif isDefined("form.Test_#Query1.ID#")>
<cfquery name="myQuery" ...>
INSERT INTO myTable
(ID, value)
VALUES( #Query1.ID#, #Evaluate("form.Test_" & Query1.ID)#)
</cfquery>
</cfif>
</cfloop>
blewis Guest



Reply With Quote

