We Recommend

Adobe ColdFusion 8 Web Application Construction Kit, Volume 1: Getting Started Adobe ColdFusion 8 Web Application Construction Kit, Volume 1: Getting Started
This Getting Started volume starts with Web and Internet fundamentals and database concepts and design, and then progresses to topics including creating data-driven pages, building complete applications, implementing security mechanisms, integrating with e-mail, building reusable functions and components, generating data-driven reports and graphs, building Ajax-powered user interfaces, and much more.


Ballyhoo


Posted By

andrewbowley on 07/31/07


Tagged

form database insert db query


Versions (?)


Inserting from a form into a database


Published in: ColdFusion 


  1. <cfquery datasource="turpinsshoutbox" username="root">
  2. INSERT INTO comment(poster, email, msg)
  3. VALUES ('#Form.poster#', '#Form.email#', '#Form.msg#')
  4. </cfquery>
  5. <cflocation url="shoutbox.cfm" addToken="No">

Report this snippet 

You need to login to post a comment.