Question
cfimage variable
I am trying to get info for my uploaded variable. Live docs tells me that source can be
source = "absolute pathname|pathname relative to the webroot|URL|#cfimage variable#"
How do I set
my uploaded file to a #cfimage variable#?
Below is what I have but does not work.
<cffile action="upload" nameconflict="overwrite" destination="#ExpandPath("./images")#"
filefield="FORM.uploadImage" result="myFile" />
<cfimage action = "info" source = "#myFile#" structname = "myFile3"
