Upload Files to MySQL
I have some code where I'm uploading different file types to my server. This works great. However, I'm trying to upload the file name to the MySQL database but I can't seem to get it to go. Any help on this would be greatly appreciated. Thanks.
My Code:
<CFSET FileDir = ExpandPath("..\manage\users\#acct#\#fileLoc#\")>
<cffile action="upload" destination="#FileDir#" filefield="fileUPLOAD" nameconflict="overwrite" result="Upload">
<cffile ACTION="Read" FILE="#FileDir#" variable="FileData">
<cfquery name="UploadFile" datasource="#db#">
INSERT INTO documents (User_ID, title, file_name)
VALUES (#FORM.UserID#, '#FORM.title#', <cfqueryparam cfsqltype="cf_sql_varchar" value="#FileData#"> )
</cfquery>
