Uploading in PHP

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

    #1

    Uploading in PHP

    How can i upload a file by using PHP?

    I found some codes on the net but they don't explain how the code
    works.

    thnx

  • Marcin Dobrucki

    #2
    Re: Uploading in PHP

    iNDRia wrote:[color=blue]
    > How can i upload a file by using PHP?
    >
    > I found some codes on the net but they don't explain how the code
    > works.[/color]

    When you upload a form with the <input type="file"...> , php will give
    you a $_FILES array which will contain everything you need.

    You have, ofcourse, read the php.net tutorial on file uploads:

    Comment

    Working...