Hi Hankcfman - so they (my host) need to set it up for me right? Since they are hosting my site with cf. " The cferror in the application.cfm and the missing...
If it's a shared server, they're not going to change it since it will affect all sites on the same server as your site is on. -John ... From: "Mark Holloway"...
How are you using it? If it's in a SQL statement: datefield between #CreateODBCDate(start)# and #CreateODBCDate(end)# Note that if your range is from the 1st...
You might try something like this: <cfset EndSpecial = dateformat("05/01/2008", "mm/dd/yyyy")> <cfif #now()# LT #EndSpecial#> <!--- show the special...
I think this is what you need: <cfscript> eventDate="4/8/2008"; </cfscript> <cfif DateCompare(DateAdd("d", -5, eventDate), now()) neq -1> <cfoutput>Show...
<cfoutput query="foo" group="outermost_column"> ... ... <cfoutput group="inner_column"> ... ... <cfoutput>rows...</cfoutput> .. just use another group tag in...
Hi guys: I`ve been googling about CF hosting. In the begining just )@!$%&/, but then I found efree2net.com and in price is absolutely different to others....
Greg, I tried this and it seems to work. It just give me everything in one row (no duplicates) which is fine. I guess it depends on the placement of the <tr> ...
Somebody posted their method on how to do mass deletes with checkboxes for each line. I copied their code and it works fine. The checkbox line is <cfinput...
Put your page headings/footers out of the loop. Set a variable to a value before the loop and set it inside the loop with the query. If the variable is still...
I have the following cfloop in my action page. It is not working so I put in cfouput to see what values are returned. <cfif isDefined("form.fieldnames") and ...
I host on http://www.hostingatoz.com, they don't have CF8 yet :( but support told me that it was planned, but no release date. There have been a few issues...
I am trying to Convert Text (tab delimited text file) to insert records into a table. but not sure how to do this, can anybody throw some light on this here is...
What information does the table you're inserting need? If you're just inserting the error id, you'd loop over form.fieldnames and insert into your DB.. Give us...
Sorry, misread your post: Think what you're trying to do is... <cfif isDefined("form.error_id")> <cfloop list="#form.error_id#" index="error_id_value"> ...
efree2net seems very cheap. What's the catch? Does anyone have any experience with them? Thanks, Rizal ... [Non-text portions of this message have been...
Looks like it's all shared hosting. I'd be interested to hear if anyone has any experience with their service though.... From: coldfusion-howto@yahoogroups.com...
I am not inserting, I need a select query. The checkboxes have corresponding numbered values, so the query (hardcoded) would be something like this ... where...
loop over form.fieldnames, get their value and insert it into a list. Then do something like select * from foo where 1 = 1 and error_id in (<cfqueryparam...
Hi All, I have a client website that wants to do two main tasks. 1) Update an access database with the fields collected in a form before moving to PayPal....