DBookatay Posted April 27, 2006 Share Posted April 27, 2006 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? Quote Link to comment https://forums.phpfreaks.com/topic/8525-renaming-uploaded-images/ Share on other sites More sharing options...
sanfly Posted April 27, 2006 Share Posted April 27, 2006 Check out the "User Contributed Notes" for [a href=\"http://nz.php.net/manual/en/function.move-uploaded-file.php\" target=\"_blank\"]move_uploaded_file() in the manual[/a], there is a script someone has posted that may be what you are looking for Quote Link to comment https://forums.phpfreaks.com/topic/8525-renaming-uploaded-images/#findComment-31208 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.