Get the basics of CF here
http://hotwired.lycos.com/webmonkey/99/03/index2a.html
http://www.macromedia.com/support/co...mentation.html ("Getting Started Building Macromedia ColdFusion MX Applications")
http://www.houseoffusion.com/
http://www.coldfusiontutorials.com (if you like this site then you may want to install
this
basically you have two main parts, the query which pulls out/or inserts data form the database. Then you have the output which outputs it to the webpage. so to pull something out of the database you would do something like
<CFQUERY NAME="getNames" DATASOURCE="yourDatasource">
SELECT name ( _what you want to select)
FROM namesTable (_where you want to select it from)
</CFQUERY>
....
<h1>the names in the nameTable are below:</h1>
<CFOUTPUT QUERY="getNames">
#name#
</CFOUTPUT>
^ what every you put in between those <cfoutput> tags will keep outputting depending on how many results (names) are returned from the database (one for each result)
good luck.