Jump to content

Cold Fusion programming language

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Aldie (talk | contribs) at 14:29, 1 March 2003 (hmmm). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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#   
<!--- Above is called a variable, this text here is just comments !--->
</cfoutput>