Inserting structure to table
I'm getting this value through a loop of a structure:
<cfloop collection="#st_datachanged#" item="key">
<cfoutput>
#key# - #st_datachanged[key]#<br>
</cfoutput>
</cfloop>
Gender - F
LastName - Smith
FirstName - Adrienne
Addr1 - 9721 Willow Lane
City - Potomac
Zip - 20854-2053
State - MD
How can I insert this value into a row in my table?
My table row has these columns: FirstName,LastName,Gender,Addr1,City,State,Zip,Gender
I'm using CF8 and Sybase
