Re: [PHP-DB] upload multiple files and rename wih time()

2010-02-07 Thread Chris

Emiliano Boragina wrote:

Hello php fellows,

 


I have two codes to upload multiple files, works very well, but I cant
rename the files... really i dont know...


The code looks ok. Do you get an error message? If not, turn up 
error_reporting and enable display_errors:


error_reporting(E_ALL);
ini_set('display_errors', true);

--
Postgresql & php tutorials
http://www.designmagick.com/


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] upload multiple files and rename wih time()

2010-02-06 Thread Emiliano Boragina
Hello php fellows,

 

I have two codes to upload multiple files, works very well, but I cant
rename the files... really i dont know...

CODE1:

 

$uploadfile = $uploaddir . basename($_FILES[fotog][name][$key]); 


  if (is_uploaded_file($_FILES['fotog']['tmp_name'][$key]))  


  { 


 //revisamos que sea jpg 


 if ($_FILES['fotog']['type'][$key] == "image/jpeg" ||
$_FILES['fotog']['type'][$key] == "image/pjpeg") 


 { 


//nombre de la imagen 


$fotog = time().".jpg";; 


//movemos la imagen. 


move_uploaded_file($_FILES['fotog']['tmp_name'][$key],
"../originales/".$fotog); 


 }else{ 


$error = true; 


$errormsg = "Formato no válido para archivo de imagen"; 


 } 


  } else { 


 //imagen no se pudo subir o no seleccionaron. 


 $error=true; 


 $errormsg = "Error al cargar imagen: " .
$_FILES['fotog']['name'][$key]; 


  }//fin file upload. 


  


  //continuamos con el insert. 


  //si hay error no hay imagen. 


  if($error){ 


 $fotog = "N/A"; 


  }

and CODE2:

 

$uploadfile = $uploaddir . basename($_FILES[fotog][name][$key]);  


  //echo $uploadfile; 


  if (move_uploaded_file($_FILES['fotog']['tmp_name'][$key],
$uploadfile))  


  {  


 echo $value . ' uploaded'; 


  }

 

How can I do this?

Thanks a lot,

 

 

+ +
   Emiliano Boragina | Diseño & Comunicación
   emiliano.borag...@gmail.com  | 15 33 92 60 02
+ +