Display #value# from database in field
(Simplified example - feel free to ask for more info)
I've got a cf application which displays a summary page
<cfoutput query="summaryInfo">
Times: #timeFormat(bookingStart, "hh:mm")# - #timeFormat(bookingEnd, "hh:mm")#
Notes: #notes#
Replies: #replies#
</cfoutput>
This all works fine. As well as a table of bookings, there is a table of replies for ease of use (select the replies you want from a list, then edit and add free text). [e2a - these replies are then saved in the db as the #replies# field above [/e2a] This works fine too.
My problem is this:
I've got one reply which is
"Please be available at #bookingStart# for instruction"
i.e. I potentially have the above table showing
Times: 8.30-9.30
Notes: Stuff to do
Replies: Please be available at #bookingStart# for instruction
Ideally I'd like the #bookingStart# to automatically detect what this time is.
The more I think about this the more I wonder why I don't get an error for having # 's in the replies field.
