Aloha All,
Thank you for any help in advance. I am attempting to insert the image name into a database so I can recall it later.
This is my code for uploading the photo.
<cfif isDefined("form.image") >
<cffile action = "upload"
fileField = "image"
destination = "D:\home\manpcs.com\wwwroot\Realtor\images\"
accept = "image/jpeg"
nameConflict = "MakeUnique">
Done uploading image!
<cfoutput> #form.image#</cfoutput>
<cfelse>
<cfform method="post" action="test.cfm"
name="uploadForm" enctype="multipart/form-data">
<cfinput name="image" type="file">
<br><br>
<cfinput name="submit" type="submit" value="Upload image">
</cfform>
</cfif>
When I output the form.image I receive th following.
Done uploading image! 1 2 C:\ColdFusion11\cfusion\runtime\work\Catalina\localhost\tmp\neotmp5787371421837803116.tmp 4
In the images file I get the image names as "example.jpg,
I want to capture the real image name. How can I?