Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
eddymilner #1
Re: Sorting a query based on URL variable
Well i dont think it's what you looking for but i made this exemple , check if
you need somthing more simple i will chwck for you <cfif
isdefined('URL.MyLastName')> <cfset get = '#URL.MyLastName#'> <CFQUERY
NAME='look' DATASOURCE='Application'> SELECT * FROM users WHERE id NOT LIKE
#get# </CFQUERY> <table> <cfloop list='#get#' index='i' >
<cfoutput> <tr><td>#i#</td></tr>
</cfoutput> </cfloop> <cfoutput query='look'> <tr>
<td> #id# </td> </tr>
</cfoutput> </table> </cfif>
eddymilner Guest
-
add new nav tab based on a query
Hi, I am trying to generate a flash fourm with more then one tabs based on the result from the query. I used the repeater and all tabs come out... -
HELP: variable increment based on date
Koncept <user@unknown.invalid> writes: Try this: (assuming the event happened September 1st) $start = mktime (0,0,0,9,1,2004); $now =... -
Sorting With a UNION Query?
Hey all, I'm working with SQL server 2000 (upsized from MS Access 2000) and I've been able to reconcile all my SQL differences but one. I build a... -
scoring/sorting db search results based on score
looking for code snippets or links to examples of the following; - Have a database with multiple fields that will be searched against (happens to... -
sorting files based on time
Hi, I want to sort all the files based on time of modification in unix that is if i issue 'ls -l' it should display all the files sorted based on...



Reply With Quote

