Jump to content

[SOLVED] change name of uploaded file [HELP]


robert_gsfame

Recommended Posts

i just wanna ask whether is it possible to change the name of uploaded file, let say user has some file named "myfile1.JPG", and once he upload the file then the name will automatically change to "user1myfile.JPG"..

 

Please give me some clue and code

 

thx in advance

with the moveuploadedfile() function, you can use a custom name as the file path. I'm going to guess you use the filename of the uploaded file in it. Well, you could instead use whatever you wanted. just do something like

$target_path = "path/to/directory/".$username.$_FILE['file']['name'];

if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_path)){
echo "success";
}
else {
echo "fail";
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.