Upload files box in form on CS6

I'm a student learning Dreamweaver and I am creating a form on a page to upload files or (attach files) but I can't find a way to create the box. I do have a server to post to if that matters. My current form code looks like this
<form name="form1" method="post" action="">
        <p>Quote registration form
</p>
        <table width="400" border="0" cellpadding="4">
          <tr>
            <td width="175">First name:</td>
            <td><label for="fname"></label>
            <input type="text" name="fname" id="fname" tabindex="1"></td>
          </tr>
          <tr>
            <td width="175">Last name:</td>
            <td><label for="lname"></label>
            <input type="text" name="lname" id="lname" accesskey="L" tabindex="2"></td>
          </tr>
          <tr>
            <td width="175">Business name:</td>
            <td><label for="bname"></label>
            <input type="text" name="bname" id="bname" accesskey="B" tabindex="3"></td>
          </tr>
          <tr>
            <td width="175">E-mail:</td>
            <td><span id="sprytextfield1">
            <label for="Email"></label>
            <input type="text" name="Email" id="Email" accesskey="E" tabindex="4">
            <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span></td>
          </tr>
          <tr>
            <td width="175">Phone number:</td>
            <td><span id="sprytextfield2">
            <label for="phone"></label>
            <input type="text" name="phone" id="phone" accesskey="P" tabindex="5">
            <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span></td>
          </tr>
          <tr>
            <td width="175">Address:</td>
            <td><label for="address"></label>
            <input type="text" name="address" id="address" accesskey="A" tabindex="6"></td>
          </tr>
          <tr>
            <td width="175">How should we contact you?</td>
            <td><label for="contact you"></label>
              <select name="contact you" id="contact you" accesskey="C" tabindex="7">
                <option>Phone</option>
                <option>E-mail</option>
                <option selected>Mail</option>
            </select></td>
          </tr>
          <tr>
            <td width="175">What do you need?</td>
            <td><span id="sprytextfield3">
            <label for="what do you need"></label>
            <input type="text" name="what do you need" id="what do you need" accesskey="W" tabindex="8">
            <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span></td>
          </tr>
          <tr>
            <td width="175">Upload pictures:</td>
            <td> </td>
          </tr>
          <tr>
            <td width="175">Upload files</td>
            <td> </td>
          </tr>
        </table>
        <p>  </p>
      </form>
please keep in mind I have a pretty basic knowledge of DW
Thanks

If your server supports PHP, this form-to-email processing script from DB masters supports attached files, plus it thwarts spam & conceals your e-mail address from robots.
Formm@ailer PHP from DB Masters
http://dbmasters.net/index.php?id=4
If your server doesn't support PHP, you'll need to find an appropriate script in a programming language you can use -- asp, aspx, perl, etc...
Nancy O.

Similar Messages

  • Upload file in web form - ora-105101

    I want to upload files in a web form. I downloaded fileupload utility, but I can't make it work.
    I can launch the form, open the dialog box, choose a file, then the progress bar appear and a
    ora-105101 is raised in the custom_item_event trigger. When I close the form after that, a Dr watson
    box appear.
    I tried java 1.2.2, then java 1.4.1, then java 1.1.8, with no success.
    I tried Jinitiator 1.1.7.30, then 1.1.8.7, then 1.1.8.10, and finally 1.1.8.16, with no success.
    I tried many many path and classpath setting, with no success.
    I executed each time that (in the current jinitiator directory) :
    javakey -r PJC
    javakey -c PJC true
    javakey -ic PJC c:\temp\pjc.x509
    to ensure the security aspect is ok.
    Do you have any ideas, or something ?
    My configuration is :
    forms 6.0.8.13.0
    windows NT service pack 5
    I use CGI mode to launch fileupload utility
    Thanks,

    The problem here is usually one of setting up the classpath correctly on the server.
    If you run the Demo Form that comes with the utility and press KEY-LISTVAL then it will pop up an alert with the current classpath in it.
    If this fails and you get an error it's because Forms can't start Java on the server at all which indicates that you need to check the o/s path that is configured for the CGI to use.
    In general I'd recommend using the Forms listener Servlet with this kind of code because it means that you can do all you're configuration in a simple .env file.
    Have a look at the HTML document that comes with the upload utility - there are some hints at then end of it to help with the setup.

  • Upload file box off screen

    I've recently had trouble with my macbook while uploading files. I click on the "upload file" button and the box that pops up that lets me choose a file is so large that the bottom is off the screen. This means that I can't click on "upload" or "cancel". The only way I know how to proceed is to click on a file and push the enter key. Does anyone know how to make that box smaller so that it fits completely on the screen?

    HI,
    Go to System Preferences/Displays. Check your resolution.
    Also, try Facebook's Simple Loader.
    Hard to see in this pic but under where you see "Cancel" click where you see:
    "Try the Simple Uploader" ... much easier to use.
    Carolyn
    Message was edited by: Carolyn Samit
    M

  • How to upload files from a form using pl/sql ?

    Hi
    Is it possible to upload the physical files outside the database (under UNIX server)using pl/sql? I already know how to store the files inside the database(wwwdoc_documents$) but I didn't find any documentation about storing the physical files outside the database.
    I have in my form the following component:
    <input type="file" name="upload">
    and I want to let the user browse for the file on his/her disc that he want to use. What I want to do next is to save a copy of that file on our file-server, and then use it in my application. How do I do that in pl/sql?
    Any help will be appreciated.
    Sebas.

    Thanks for the suggestion. I like this approach as Java is more familiar to me than other languages.
    Our DBA is out of touch today, so I could not grant the javauserpriv to my database user. I tried to run the script anyway in the chance that my user had the privs, and it seemed to have hung. I am now combing Oracle's site for more documentation so I can write some tests to see if I can get a basic Java object working. Under what heading would I find this?
    ajt

  • Uploading Files into DB with php

    Hi There,
    I am struggling with my php code.  I added an upload button into my site, here the consultants can add documents which they have worked on.  But...I cannot get these documents into a folder in the DB, nor can I get these documents to be viewed by a Teamleader with the original request number attached.
    I used the normal script to do the Browse function:
    <form enctype="multipart/form-data" action="post3.php" method="POST">
      <input type="hidden" name="MAX_FILE_SIZE" value="300000" />
      <span class="grey">Choose a file to upload</span>:
    <input name="uploadedfile" type="file" />
    <input type="submit" value="Upload File" align="middle" />
    </form>
    But my PHP code does not want to work nor does it want to display anything...(a bit frustrating)
    can anyone please assist me with code or some pointers please..
    Thank you in advance..

    05/08/17 11:22:31 java.io.IOException: java.io.IOException: sqlldr: not found
    Does the client m/c have sqlldr installed (it will need Oracle client installation)? Does it have the ORACLE_HOME/bin directory in whatever path is appropriate for the client OS?
    Cheers, APC

  • Uploaded file (via front-end) created as a Media Download item (Literature Item)?

    Is it possible to have an uploaded file (via a form or webapp edit form on the site front-end) to be stored/created as a Media Download item (Literature Item)? Or alternatively, is it possible to secure a file that has been uploaded on the front-end (by 'secure' I mean cannot be access outside of a secure zone)?
    My aim is to have customers upload files into their secure zone and maintain that security on the uploaded file so other cannot access them. I can't see that this will be possible but hopefully someone might have some creative ideas to get around it.

    Hi Adam,
    This can be implemented via web apps, please go through the web app tutorials here to know more about them - User manual
    You can set up a secure web app to take the submissions from the users and include file upload in that submission. Those submissions are visible to only the user who submits it, unless, you enable the option where every one can see/edit it.
    Note: Via the web apps, the files that are uploaded, they go into a folder with a random name which is directly accessible on the internet, even though, on the site, through the web app items, only the logged in users can see it. By this I mean that anyone who has the direct link to the file will be able to access it and it can also be indexed by search engines. So, when it comes to using the work around of web apps to implement this function on your site, make sure to take measure to block Google bots from indexing the files.
    Check this article to know more on how the GoogleBot works - Googlebot - Webmaster Tools Help
    Regards,
    Abhishek Maurya

  • Help adding an "upload file" button to an interactive form in ID CS6

    Hello, I would like to add a button for users to upload a file to the interactive form I am creating in InDesign CS6. I would like those filling out the form to be able to click a button that opens their finder/windows and then gives them the option to search through and find a file of their chosing. Ex: I want users to upload their logo, in file formats of .jpg, .eps, .pdf,.ai, .psd, .ind, ect.
    Appreciate the help

    Salah is talking about something different than you're using.
    PDF created with InDesign and Acrobat Pro isn't capable of supporting uploading images into a form.
    Salah may be correct, but he's talking about a different product—LiveCycle Designer. Before Acrobat Pro XI, LifeCycle Designer was included with Acrobat Pro—but ONLY for Windows, not for the Mac. It created what's sometimes called XML PDF.
    However, it's now a separate product (not included with Acrobat XI), it's still not supported on a Mac, and it doesn't work when viewed on mobile PDF readers like Reader for iOS.

  • Error message when trying to upload a pdf file to a form

    A user was trying to upload a pdf file to a form I created (Contractor Vanpool Application Form). The parameters I set, was that it had to be a pdf form, less than 20MB and a single file. She met these parameters, but when she hit the submit button, she received this dialogue box message:  Warning: JavaScript Window - File Attachments are not supported in FormsCentral PDF forms.  Please contact the form author to send the file attachments another way. This dialogue box prevented her from even getting as far as selecting the file and uploading. Another user was succesfully able to upload a form, so I know this is working.  So I changed the parameters to allow multiple files in any format, and she still had a problem.
    She states is using windows 95, Internet Explorer. Help, Michelle

    In Form Central, when I add a field, I select the Add File Attachment icon (see screen shot below - it is the 10th icon from the left, the paperclip over a sheet):
    Then it allows me to fill in the field, describing the file to upload, and the properties to the right defining the file size limit, type of file and other properties.  This is all done through formscentral, thus allowing a user in my form to upload a file that is attached to the form when submitted.

  • Upload file form problem in JSP portlet !!!

    Hi!
    I use "OrdHttpUploadFile" class for upload file in JSP portlet to database!
    Problem is that this class must use FORM ENCTYPE="multipart/form-data" whis I suppose dont work in portlet!?
    Which FORM ENCTYPE should I use in portlet! Or there is some other solution for upload file in JSP portlet!?
    Thanks!
    Kristjan

    Thanks for u r reply Mr.Prasad.
    Sorry for the delay for reply.
    My scenario is in 2 phases
    Phase 1. I am taking input from the front end using jsp and writing the contents in to a file and then downloading that file on to my desktop.(Now let us say this one as file downloading)
    Phase 2. Now I had designed a page,which locates the downloaded file by using the following tag.
                        <td><input type ="file" name ="xmlFileName"></td>
        In the downloaded xml file I am having applicationid. I am checking whether the application id already xists in the database (or)not.
    If already exists in the database , the end user will get one confirmation msg,saying application already exists in the database.
    If the user clicks ok again the request has to go to the servlet.
    Now the actual problems are
    1. When I locate the file on the desktop let us say c:\desktop\krish and click on submit button, it is locating to the file that is present in the server(this is the case for the first time means before checking the application id in the database).
    2. when the end user clicks "ok" on the confirmation box , I am not getting the file name,that has to be submitted to the servlet.
    Can u plz help me how to resolve this issue.
    regards,
    Krish

  • Upload File option nolonger in sp2010 form after editing template using infopath

    Hi, I want my users of the sharepoint 2010 list to be able to upload a number of documents to list items when required.
    We have 2 fields on the form, one so that a document with questions can be added, and one for a similar answer document.
    Befor using infopath, the enhanced type text allowed the user to upload a file to that column. But the tab which has the upload option is now missing from the form once edited by infopath.
    i don't want the users to have to upload documents elswhere on the sharepoint site and it makes the process much longer.
    Also I don't seem to have the attach control on my infopath settings

    Hi,
    I understand that you want to upload file to SharePoint list using InfoPath form. I can reproduce you issue, after customizing the form in InfoPath, the Upload File button is missing for the rich text box. You can use the attachment control in the InfoPath
    form. Since you cannot find the Attachment control in InfoPath, you can check the list settings>Advanced Settings, enable Attachments. Then customize the form in InfoPath again.
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • Launching file open dialog box in Forms 6i

    hi,
    We have to launch file open dialog box using forms 6i within oracle apps
    and store the file into the database.
    Any ideas?
    Thanks,
    AZ

    Hi azodpe
    i have a solution(Source Code) plz give me ur email address
    i ll mail u later.
    Khurram

  • Questions about OAS Portal Forms to upload files

    Hello,
    I have quetions, about uploading files, see I need to creat a form that will be used by other people to upload information that later will be presented as downloads in the portal...
    so I created a form in my provider with a file (binary) field, and it mimes to my table in the DB, to the field "Archivo", then what I do is use a omniportlet and using HTML format I present like a link using the info in the field Archivo
    and when I clic on it it takes me to this link
    http://desarrollo06:7778/pls/portal/38173.PDF
    but the file I uploaded does not appear
    can aniyone help me to solve this?
    thanks in advances for the suggestions and your time ^_^

    The method you used to setup upload of file seems fine. I suppose you would have used a blob type to save the file in your db table.
    basically, you can develop a report offering a link calling perhaps a procedure which would query from the table and download the file.
    In that procedure, you would look for the file (vblob) and the mime_type from that table using a sql-query. then use them to setup the mime type for the http protocol, and download the file as follows.
    owa_util.mime_header(mime_type);
    owa_util.http_header_close;
    wpg_docload.Download_File(vblob);
    hope that helps!
    AMN

  • Hi, I am using HP11 and iPlanet web server. When trying to upload files over HTTP using FORM ENCTYPE="multipart/form-data" that are bigger than a few Kilobytes i get a 408 error. (client timeout).

    Hi, I am using HP11 and iPlanet web server. When trying to upload files over HTTP using FORM ENCTYPE="multipart/form-data" that are bigger than a few Kilobytes i get a 408 error. (client timeout). It is as if the server has decided that the client has timed out during the file upload. The default setting is 30 seconds for AcceptTimeout in the magnus.conf file. This should be ample to get the file across, even increasing this to 2 minutes just produces the same error after 2 minutes. Any help appreciated. Apologies if this is not the correct forum for this, I couldn't see one for iPlanet and Web, many thanks, Kieran.

    Hi,
    You didnt mention which version of IWS. follow these steps.
    (1)Goto Web Server Administration Server, select the server you want to manage.
    (2)Select Preference >> Perfomance Tuning.
    (3)set HTTP Persistent Connection Timeout to your choice (eg 180 sec for three minutes)
    (4) Apply changes and restart the server.
    *Setting the timeout to a lower value, however, may    prevent the transfer of large files as timeout does not refer to the time that the connection has been idle. For example, if you are using a 2400 baud modem, and the request timeout is set to 180 seconds, then the maximum file size that can be transferred before   the connection is closed is 432000 bits (2400 multiplied by 180)
    Regards
    T.Raghulan
    [email protected]

  • How to add new row and update existing rows at a time form the upload file

    hi
    How to add new row and update existing rows at a time form the upload file
    example:ztable(existing table)
    bcent                      smh            nsmh         valid date
    0001112465      7.4                       26.06.2007
    0001112466      7.5                       26.06.2007
    000111801                      7.6                       26.06.2007
    1982                      7.8                       26.06.2007
    Flat file structure
    bcent                       nsmh         valid date
    0001112465     7.8     26.06.2007  ( update into above table in nsmh)
    0001112466     7.9     26.06.2007  ( update into above table in nsmh) 
    000111801                     7.6      26.06.2007 ( update into above table in nsmh
    1985                      11              26.06.2007   new row it should insert in table
    thanks,
    Sivagopal R

    Hi,
    First upload the file into an internal table. If you are using a file that is on application server. Use open dataset and close dataset.
    Then :
    Loop at it.
    *insert or modify as per your requirement.
    Endloop.
    Regards,
    Srilatha.

  • Assigning video files uploaded via a customer form to the src file section of another page (without manually having to copy an paste over)

    Hi. I’ve set up a web form that uses html and javascript. This particular form lets you upload files. I also have another page that lets you play videos. I was wondering if anyone knows how to make the inner html of for example the upload file form field equal the file that is played by the video player on the other page.
    Basically on youtube when you upload a video it automatically makes another page with the video file you uploaded assigned to the video player on that page. I want to know how to go about doing that. So people can upload videos and then be able to watch them instantly without me manually having to create the page an assigning the right file to the page.
    Even just knowing how to create a different page each time the form is submitted would be helpful. Thanks.

    This is more complex than you realize and JavaScript alone can't do it. You'll need a server-side script like PHP to authenticate and sanitize file uploads to prevent malicious scripts or malware from ever getting to your server.  Then, your script will have to process the uploaded file by saving it to a folder or database, give it a unique ID and then redirect users to a new page that pulls the file into an HTML5 or similar player.  How good are you with server-side programming?
    Nancy O.

Maybe you are looking for

  • Why can't I get my iPad to connect via bluetooth to my iPhone 5s?

    I never have been able to get my iPhone 4s or the new iPhone 5s to connect with my iPad via Bluetooth. Both are running the latest 7.0.3 software.

  • Calling a function in a report

    The following query brings in the calender month in a year but i want to get the fiscal year from the table. And to get the fiscal year from the table i created a function check_trans_date and tried calling the same in the query but while compling it

  • IPhoto storage problems

    Can anyone give me any advice about changing the settings in iPhoto to store photos in a better way? At the moment the only way to access (i.e. copy) a photo is to go into the Masters files and each upload seems to have a different folder.  Is there

  • Avid bins to FCP

    Does anyone know how to import either the project settings or bins from an AVID to FCP. I am transferring a project from AVID Express pro 5.5.1 to FCP 5.1.1. I purchased Automatic duck pro import and imported the sequence just fine, but I need my bin

  • I purchased CS6 Design & Web Premium but there is nothing on my Order List?!

    I recently made a purchase just awhile ago, I got directed to 'My Order List' and could see my order there. But when I refreshed it they disappeared and now my order is missing. Could someone tell me just what is going on? I have check 'My Order' for