View Single Post
Old 02-13-2008, 01:14 AM   #2 (permalink)
TlcAndres
The Addict
 
Join Date: Nov 2007
Posts: 264
Thanks: 2
TlcAndres is on a distinguished road
Default

Just a rough guess

PHP Code:
<?php

foreach(array_keys($_FILES) as $key)
{
    
$dest $root '/uploads/' $_FILES[$key]['name'];
    
move_uploaded_file($_FILES[$key]['tmp_name'],$dest);
}
TlcAndres is offline  
Reply With Quote