> 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 copying the file.

> unlink($userfile);

This is deleting the file, making it *seem* as if the file
was moved.

Chris

Reply via email to