This is probably very easy, but I think I need a fresh set of eyes:
The code below returns:
form.ML_3_9 c'mon
form.ML_3_32 eileen
form.ML_3_31_Date {t '00:00:00'}
form.ML_3_10_Date {t '00:00:00'}
form.ML_3_53 dfgdfh
When it should be showning a date value for form.ml_3_31 and 3_10.
I've included the form values from the bottom of the page at the bottom of
this page.
CODE:
<cfloop query="get_items_needed">
<cfif get_items_needed.input_type is "varchar">
<cfset form_variable = "form.ML_" &
get_items_needed.milestone_id & "_" & get_items_needed.id>
<cfelse>
<cfset form_variable = "form.ML_" &
get_items_needed.milestone_id & "_" & get_items_needed.id & "_Date">
<cfset form_variable_time = form_variable & "_Time">
<cfset form_variable_time_evaluated =
Evaluate("#form_variable_time#")>
</cfif>
<cfset form_variable_evaluated = Evaluate("#form_variable#")>
<cfoutput>
#form_variable#&nbsp;&nbsp;#form_variable_evaluated#<br>
</cfoutput>
</cfloop>
END CODE
FORM VALUES:
ML_3_10_DATE=9/21/2004
ML_3_10_DATE_TIME=6:00 am
ML_3_10_DATE_TIME__TIME_REGION=US/Eastern
ML_3_31_DATE=9/19/2004
ML_3_31_DATE_TIME=6:00 pm
ML_3_31_DATE_TIME__TIME_REGION=US/Eastern
ML_3_32=eileen
ML_3_53=dfgdfh
ML_3_9=c'mon

John Stanley
Web Application Developer
http://www.stangocity.com
http://www.activeaero.com
734-547-7277
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to