Copy link to clipboard
Copied
Hi there,
I want an upload button for files in my form. Is this possible and if so how do I get it there?
THank you so far.
Copy link to clipboard
Copied
Theroyalfam wrote:
I want an upload button for files in my form. Is this possible and if so how do I get it there?
From page 976 of the Developer's Guide:
<!--- This code creates a form with one field where the user enters the image file to upload. --->
<cfform action="makeThumbnail.cfm" method="post" enctype="multipart/form-data">
Please upload an image:
<cfinput type="file" name="image">
<cfinput type="submit" value="Send Image" name="Submit">
</cfform>