Ver Mensaje Individual
  #7 (permalink)  
Antiguo 30/01/2007, 09:04
Avatar de ginitofl
ginitofl
 
Fecha de Ingreso: diciembre-2006
Ubicación: Lima Perú
Mensajes: 349
Antigüedad: 17 años, 4 meses
Puntos: 22
Re: mime type extraño

Hola Viktoria haber si te va tambien con esta, esta tambien te pregunta por el tamaño de la imagen:

Código PHP:
<?
$nombre_archivo 
$HTTP_POST_FILES["userfile"]["name"]; 
$tipo_archivo $HTTP_POST_FILES["userfile"]["type"]; 
$tamano_archivo $HTTP_POST_FILES["userfile"]["size"]; 

if (!((
strpos($tipo_archivo"gif") || strpos($tipo_archivo"jpeg")) && ($tamano_archivo 50000)))
{
    
//te envia error
}
else
{
   
//haces el upload
}