Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/05/2008, 15:41
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: problemas con array_diff

Prueba cambiar tu primer foreach así:
Código PHP:
$j 0;
foreach(
$archivo as $i=>$linea) {

$en_pagina [$j] = trim($linea);
print (
"<br> ".$j.".- ".$en_pagina [$i]." </br>");
$j++;

Saludos.