Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!--- Name is not required for insert/update/delete queries and its just extra typing to specify a name as far as I'm concerned. --->
<CFQUERY datasource="MyDataBase
<!---The first set is column names.. Remember, do not use "'"s around these, a common error..--->
INSERT INTO Table_Name(Enter,Your,Column,Names,Here,In,Comma,Delimited,Format)
<!---The second set is variable names, from any variable scope available to the page, (IE: url, caller, application, request, session, form, etc)--->
VALUES('#Enter#','#Your#','#Variable#','#Names#','#Here#','#In#','#Comma#','#Delimited#','#Format#')
</CFQUERY>