Cold Fusion programming language: Difference between revisions

Content deleted Content added
m hmmm
AvicBot (talk | contribs)
m Robot: Fixing double redirect to Adobe ColdFusion
 
(10 intermediate revisions by 9 users not shown)
Line 1:
#REDIRECT [[Adobe ColdFusion]]
'''Cold Fusion''' is a tag based language similiar to [[PHP]].
Alliare (Ben Forta) created Cold Fusion and was later sold to [[Macromedia]
who has it currently at level MX (Cold Fusion 6).
 
==Example of Cold Fusion==
 
<cfquery name="nameofquery" datasource="odbc_connection" username="simple" password="enough">
 
Select * from table
 
where field = 'whateveryouaresearchingfor'
 
</cfquery>
 
<cfoutput query="nameofquery">
#field_from_query#
<nowiki><!--- Above is called a variable, this text here is just comments !---></nowiki>
</cfoutput>