Jump to content

[SOLVED] Generate Random File Name on Upload


atticus

Recommended Posts

The file is uploading to the server, however in order to keep files from being overwritten I want to generate a random file name.  It is uploading to the file, however it is not generating the random name.

 

<?php
include("config.php");
  if(isset($_POST['submit']))

  {
  $uploadDir = 'upload/';
  $id = mysql_escape_string($_POST['id']);
  $fileName = $_FILES['userfile']['name'];
$tmpName = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];

// get the file extension first
$ext = substr(strrchr($fileName, "."), 1); 

// generate the random file name
$randName = md5(rand() * time());

$filePath = $uploadDir . $fileName;

$result = move_uploaded_file($tmpName, $filePath);
if (!$result) {
echo "Error uploading file";
exit;
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.