Re: [PHP] Deciding the directory for the uploaded file?

2003-03-02 Thread Justin French
It's all in the manual: http://www.php.net/manual/en/features.file-upload.php In particular, look at the lines involving "move_uploaded_file()" Justin French on 03/03/03 4:00 PM, Denis L. Menezes ([EMAIL PROTECTED]) wrote: > Hello friends. > > I have seen some php scripts for uploading files

RE: [PHP] Deciding the directory for the uploaded file?

2003-03-02 Thread John W. Holmes
> I have seen some php scripts for uploading files. They all mention thet > the file goes to a temporary folder. > > How can I upload the file to a particular folder that I have created? It's always uploaded into a temporary folder. Then you use move_uploaded_file() to move it where you want. --

[PHP] Deciding the directory for the uploaded file?

2003-03-02 Thread Denis L. Menezes
Hello friends. I have seen some php scripts for uploading files. They all mention thet the file goes to a temporary folder. How can I upload the file to a particular folder that I have created? Thanks very much. Denis