Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Upload button for files

New Here ,
Nov 12, 2013 Nov 12, 2013

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.

TOPICS
Getting started

Views

410
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Nov 21, 2013 Nov 21, 2013

Copy link to clipboard

Copied

LATEST

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>

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources