Posted by Zilla on 02/16/06 11:46
sheldonlg@gmail.com wrote:
[snip]
> Here is where the fun begins.
>
> In the previous code I had written, I simply had a
> copy($_FILES['filename']['tmp_name'], "destination_on_server");
[snip]
Try using this instead:
move_uploaded_file($_FILES['userfile']['tmp_name'], "path/to/file.ext");
Zilla.
[Back to original message]
|