Posted by peter on 10/21/06 13:41
"mantrid" <ian.dandav@virgin.net> wrote in message
news:%7o_g.143$76.75@newsfe5-win.ntli.net...
> Im trying to move a file but am having luck
> my code is below. The temp and target paths are valid as they echo
> correctly. but I cant get the copy() function to work, or the rename()
> function
>
> $target_path = $targetdir . basename($uploadedfile["name"][$x]);
> $temp_path = $tempdir. basename($uploadedfile["name"][$x]);
>
> echo "Target - ".$target_path." Temp - ".$temp_path."<br>";
>
> copy($temp_path, $target_path);
>
> has any one experienced this problem?
>
are you receiving any error if so what is it? Also if it is as it looks and
is a file that has been uploaded then why not use the move_uploaded_file()
function.
Navigation:
[Reply to this message]
|