Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.9K
~327 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for Walyer

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 …

Member Avatar for paulbaylis
0
239
Member Avatar for kakumeii

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 …

Member Avatar for paulbaylis
0
88

The End.