Tengo esta consulta en el model.
Código PHP:
Ver original
public function unarticulo($a){ $rest[]=NULL; $solicita="select * from ".$this->tabla." where idarticulo='$a'"; $rest[]=$unos; } return $rest; }
Y cuando lo llevo del controlador a la vista los arrays se ven así.
Código PHP:
Ver original
0 => null 1 => 'idarticulo' => string '12' (length=2) 'titulo' => string 'El fútbol de cada día.' (length=31) 'texto' => string 'aca ca el texxto... ...' (length=780) 'foto' => string '42535end-2.jpg' (length=14) 'fecha' => string '2009-08-26 16:09:06' (length=19) 'numlec' => string '4' (length=1) 'numcomenta' => string '1' (length=1) 'nombre' => string 'Bowsis' (length=6)
Porque siempre se crea el indice 0 en el array?
Alguna forma de eliminarlo?
Saludos.