Re: [PHP] Upload moves the file doesn't copy it..

2001-02-14 Thread Ankur Verma
Sorry for not being able to send you the code you requested for. But I am glad that you learnt uploading files. coming to your problem, PHP by default deletes the temporary upload file it created when the script finishes execution. You will need to explicitly make all the copies of the file that

RE: [PHP] Upload moves the file doesn't copy it..

2001-02-14 Thread Boget, Chris
> I have finally learned to upload file using php. > But the problem is that When I upload a file, it > disappears from it's place and moves to the location I > have told it to go to. It's more like a cut & paste > rather then copy and paste... > if (copy($userfile, "c:\\upload.txt")) This is co