Jump to content

Cold Fusion programming language

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Joshuah (talk | contribs) at 00:06, 23 January 2003. 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">

  1. field_from_query# // This is a variable

</cfoutput>