Listing 1
<!--- Output variables to be inserted into database --->
<cfoutput>
#b_date#
#b_name#
#b_orderid#
#b_items#
</cfoutput>

<!--- use <cfabort> to stop the processing --->
<cfabort>

<!--- When you use <cfabort> the sql query does not get executed --->

<!--- sql query --->
<cfquery datasource="orders" name="neworders">
......
</cfquery>

Listing 2
<!--- First Marker --->
<cfoutput>
Marker 1
</cfoutput>

<!--- block of CF Code --->
...
<!--- end block --->

<!--- Second Marker --->
<cfoutput>
Marker 2
</cfoutput>