File upload question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • smk17

    #1

    File upload question

    I've just set up a file upload php page where people can send me images
    and photos. Now I need, on that same page, a text block where they can
    write details about the photo and have that text sent to my email
    address and the photo get sent to my server.

    I want to add whatever additonal code is needed to the page I made. Is
    this possible?

    Thanks

  • Andre Frashek

    #2
    Re: File upload question

    Hi,

    for the text block you could just add a textarea to the existing form using

    <textarea name="ITSNAME" cols="45" rows="10"></textarea>

    and you should adjust the width (=cols) and height (=rows) of the box.

    In your php script you can broach the textarea-input with
    $_POST['ITSNAME'] if you use the post method in your form.

    Then the you need only built two functions, the first one that safes the
    uploaded file and the second one that uses the passed ITSNAME variable
    value and sends it to your e-mail adress.


    smk17 wrote:[color=blue]
    > I've just set up a file upload php page where people can send me images
    > and photos. Now I need, on that same page, a text block where they can
    > write details about the photo and have that text sent to my email
    > address and the photo get sent to my server.
    >
    > I want to add whatever additonal code is needed to the page I made. Is
    > this possible?
    >
    > Thanks
    >[/color]

    Comment

    Working...