Form with file upload box

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default Form with file upload box

    Hi, I've designed a form that when submitted adds to an access database. But I
    need to include a 'file upload' field. Do I put this in it's own form or add it
    somehow to the existing one so the file is sent at the same time as the form
    information.? I've managed to create an upload file form but only without any
    other text & radio fields. How do I achieve this?

    Wookie Guest

  2. Similar Questions and Discussions

    1. LWP - multipart/form-data file upload from scalar rather than local file
      I'm looking to do an HTTP upload, preferably with HTTP::Request::Common, but get the file data from either a filehandle or a scalar rather than...
    2. File upload form trouble
      Can anyone tell me why the file field is not uploading attachments on this page. I did everything in the...
    3. file upload form enctype="multipart/form-data
      I'm upload a file using cffile upload and that seems to work fine except I need to use enctype="multipart/form-data on the form side. This isn't a...
    4. Flash Form - Upload File
      I know that when using the CFFORM tag with type = Flash, it says you cannot use the input file tag. Has anyone found a way to upload a file with a...
    5. File upload from a form / upload_tmp_dir query
      Hi Everyone This is my first day with PHP and, not surprisingly, I've run into a problem :-) I want to allow file uploads to the server...
  3. #2

    Default Re: Form with file upload box

    Hi

    you can write that code in the old form itself.
    you dont require another form for this. when you saving the data into the db there itself you use the cffile tag to upload the file.

    vkunirs Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139