Ver Mensaje Individual
  #3 (permalink)  
Antiguo 12/07/2007, 04:41
Avatar de zaida
zaida
 
Fecha de Ingreso: noviembre-2006
Ubicación: Madrid (España)
Mensajes: 266
Antigüedad: 17 años, 5 meses
Puntos: 0
Re: Problema!! Warning: getimagesize(): Read error!

Éste es el resto de código que contiene $popo[$i]:

Código PHP:
<?php
session_start
();
$ruta_imagen=$_GET['ruta'];
if(
$ruta_imagen!=NULL)
{
if(
$_SESSION['foto']==NULL)
{
    
$rut=array();
    
$rutimagen[0]=$ruta_imagen;
    
$_SESSION['foto']=$rutimagen;
    
$popo=$_SESSION['foto'];
}
else
{
    
$foto=$_SESSION['foto'];
    
$num=count($foto);
    
$rutimagen=$_SESSION['foto'];
    
$rutimagen[$num]=$ruta_imagen;
    
$_SESSION['foto']=$rutimagen;
    
$popo=$_SESSION['foto'];
}

    
}
?>
Saludos y gracias!!!