Hi,
I think this piece of code will help ya:
Index.cfm:
<cfparam name="chkMarried" default="0">
<cfif isdefined("FrmSubmit"

>
<cfquery datasource="dsn" query="q">
Insert Into Member(Married)
Values(#chkMarried#) <!--- numeric --->
</cfquery>
<cfelse>
<form action="index.cfm" method="post">
Check the box if you are married!<br>
<input type="checkbox" name="chkMarried" value="1"><br>
<input type="submit" name="FrmSubmit" value="Submit">
</form>
</cfif>
To check the value of the checkbox:
<cfif #chkMarried# is "0">
...
<cfelse>
...
</cfif>
The value of the checkbox can be (yes/no) instead of (0/1)!! <bebbero></bebbero>