No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
That seems pretty complicated. Here's a real simple one I use: <!--- Query table for entered username ---> <cfquery name="GetUser" datasource="1234"> SELECT Username FROM Table WHERE Username = '#Form.Username#' </cfquery> <!--- Is the username already taken ---> <cfif GetUser.RecordCount GT 0> <b>Ooops, the username has already been selected by another …
1) Give your query a name: <cfquery name="DeleteRecords" datasource="aasdfaa"> DELETE FROM DATABASE WHERE year = '#Right(form.date,2)#' AND projgraddate<='#form.date#' </cfquery> 2) Output the recordcount of the query: <cfoutput>#DeleteRecords.RecordCount#</cfoutput> [QUOTE=kakumeii]Hey, I'm new here, so I have a question. I did a form in coldfusion that creates tables of data of students when …
The End.
paulbaylis