Ver Mensaje Individual
  #10 (permalink)  
Antiguo 28/08/2014, 13:12
TIFORO
 
Fecha de Ingreso: junio-2008
Ubicación: Madrid
Mensajes: 374
Antigüedad: 15 años, 10 meses
Puntos: 1
Respuesta: Problema con Array

<?php
$my_array = array('a','b','c','d','e','f','g','h','i','j','k') ;
for($i = 0; $i <=count($my_array); $i++){

echo $my_array[$i].'<br>';
}
?>

Este código me provoca un error me puede ayudar alguien...