Jump to content

Renaming Uploaded Images


DBookatay

Recommended Posts

I am working on a internal posting area for my company, where users are asked to upload an image onto the server, and then have the image displayed. I found this code and got it to work properly:

[code]if (is_uploaded_file ($_FILES['image']['tmp_name'])) {
   if (move_uploaded_file($_FILES['image']['tmp_name'], "user_logos/{$_FILES['image']['name']}"))
        $i = $_FILES['image']['name'];
   } else {
        $i = "";
}[/code]

What I now need to do is be able to rename the images, incase 2 users upload the same image name. Is there an easy way to do this?
Link to comment
https://forums.phpfreaks.com/topic/8525-renaming-uploaded-images/
Share on other sites

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.