Skip to main content
Participant
November 12, 2013
Question

Upload button for files

  • November 12, 2013
  • 1 reply
  • 445 views

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.

This topic has been closed for replies.

1 reply

EddieLotter
Inspiring
November 21, 2013

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>