I BEG FOR HELP
I have this code:
<cfquery datasource="#VARIABLES.Datasource#">
INSERT INTO Blogs (
Subject, DateTime, Body, UserName)
VALUES (
'#Form.Subject#', <CFQUERYPARAM CFSQLTYPE="CF_SQL_TIMESTAMP"
VALUE="#DateFormat(Now())# #TimeFormat(Now())#">,
'#Form.Body#',
'#VARIABLES.UserID#')</cfquery>
It gives me a syntax error every time, even when I replace the values with
regular strings like, 'test', 'test','test','test'
|