Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/02/2009, 12:12
Avatar de Ronruby
Ronruby
 
Fecha de Ingreso: julio-2008
Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 15 años, 9 meses
Puntos: 416
Respuesta: Tengo un error ... pero no logro verlo.

El error que te muestra no importa en lo absoluto, solo tienes que desactivar los notice:

Código PHP:
//Al principio de tu codigo
error_reporting(E_ALL E_NOTICE); 
Cita:
Iniciado por php.net
Hinweis: Enabling E_NOTICE during development has some benefits. For debugging purposes: NOTICE messages will warn you about possible bugs in your code. For example, use of unassigned values is warned. It is extremely useful to find typos and to save time for debugging. NOTICE messages will warn you about bad style. For example, $arr[item] is better to be written as $arr['item'] since PHP tries to treat "item" as constant. If it is not a constant, PHP assumes it is a string index for the array.