Output a variable within a variable
This might sound a bit strange but I have a system running that serves ads from a variety of sources. The problem is that I need to append a UUID inside the string called from the database.
<cfoutput>
#ad_details#
</cfoutput>
The variable called from the query outputs as:
<SCRIPT language='JavaScript1.1' SRC="http://adserverlink#CreateUUID()#">
</SCRIPT>
The problem is that it outputs the CreateUUID as seen above and not as the expected output of a UUID.
Hope that makes sense.
Thanks in advance.
