Jump to content

Rename And Move Upload Arrays?


nineninefour

Recommended Posts

Alright, I've got another one.

I have a form designed to facilitate multiple image uploads. I have also writen this pictured script to move them into an images folder.

Each form has a random number ($num) generated for it.

What I want to do is rename all the images uploaded to $num_1.ext, $num_2.ext, $num_3.ext, etc.

Here is the code I have,


can someone guide me?


Thanks!

[code]
$num = rand(0, 99999);
$umask = umask(0);
$uploaddir = "items/images/";
$tmp_name = $_FILES["userfile"]["tmp_name"][$key];
$name = $_FILES["userfile"]["name"][$key];


foreach($_FILES['userfile']['name'] as $key => $name)
  {
     move_uploaded_file($tmp_name, "$uploaddir/$name");
  }
?>

[/code]
Link to comment
Share on other sites

If this random code is generated BEFORE the user sends the files, and is sent along with them, you can refer to it as $_POST['field'].

If it is generated after th eupload (as what it seems to be), simply prepend it to the directory name:

$uploadir = $num . '/items/images/';

You might have to use:
[a href=\"http://www.php.net/mkdir\" target=\"_blank\"]http://www.php.net/mkdir[/a]
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.