View Single Post
  #2  
Old 08-20-2009, 10:54 AM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,922

After (Line 239)
PHP Code:
If(@move_uploaded_file($_FILES['file']['tmp_name'][$i],$folder.$file_name[$i])) {
    
$uploaded=true
Add this:
PHP Code:
copy($folder.$file_name[$i], "./uploads_copies/".$file_name[$i]); 
You'll have to edit the "./uploads_copies/" to your copy path.
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote