the code i have offered you here will determine if the France date format is needed to be displayed;
now you are asking that instead month/day/year, the date be displayed as day/month/year, right?
u can accomplish that by using different mask in the DateFormat() function;
instead
<cfset date = DateFormat(now(), "d mmmm yy"

>
use this
<cfset date = DateFormat(now(), "mmmm d yy"

>
the available masks for DateFormat() function:
mask
Set of characters that are used to show how ColdFusion should display the date:
d -- Day of the month as digits with no leading zero for single-digit days.
dd -- Day of the month as digits with a leading zero for single-digit days.
ddd -- Day of the week as a three-letter abbreviation.
dddd -- Day of the week as its full name.
m -- Month as digits with no leading zero for single-digit months.
mm -- Month as digits with a leading zero for single-digit months.
mmm -- Month as a three-letter abbreviation.
mmmm -- Month as its full name.
y -- Year as last two digits with no leading zero for years less than 10.
yy -- Year as last two digits with a leading zero for years less than 10.
yyyy -- Year represented by four digits.
gg -- Period/era string. Currently ignored, but reserved for future use.
here are few examples:
<CFSET todayDate = Now()>
<CFOUTPUT>
#DateFormat(todayDate)#<br>
#DateFormat(todayDate, "mmm-dd-yyyy"

#<br>
#DateFormat(todayDate, "mmmm d, yyyy"

#<br>
#DateFormat(todayDate, "mm/dd/yyyy"

#<br>
#DateFormat(todayDate, "d-mmm-yyyy"

#<br>
#DateFormat(todayDate, "ddd, mmmm dd, yyyy"

#<br>
#DateFormat(todayDate, "d/m/yy"

#<br>
</CFOUTPUT>
in short, the following code:
<cfset frenchMonths = "janvier,février,marcher,avril,juin,juillet,août,septembre,octobre,novembre,décembre">
<cfset date = DateFormat(Now(), "m d yy"

>
<cfset fMonth = ListGetAt(frenchMonths, ListGetAt(date, 1, " "

)>
<cfset frenchDate = ListSetAt(date, 1, fMonth, " "

>
<cfoutput>#frenchDate#</cfoutput>
will give you this output:
décembre 8 01
ColdFusion has many functions to manipulate date an strings; to use database for something like french date formating would be simply uneffective; if you need coldfusion documentation with description of all ColdFusion funtions and tags go to:
Sylvano
dsylvano@hotmail.com