I want to view a data in view with different style from each data. Thats why I need an array index when load the data from database.
I'm using CodeIgniter, but I still got error like undefined offset.
I tried to select data in my model and order by datetime (timestamp) limit 5 data
Model :
return $this->db->query("select * from artikel order by datetime ASC LIMIT 5");
Controller :
$data['artikels']=$this->Home_model->getartikel();
View :
<?php foreach ($artikels->result_array() as $artikel) { ?>
<div class="style-one"><?php echo $artikel[0]['title'] ?></div>
<div class="style-two"><?php echo $artikel[1]['title'] ?></div>
<div class="style-three"><?php echo $artikel[2]['title'] ?></div>
<div class="style-four"><?php echo $artikel[3]['title'] ?></div>
<div class="style-five"><?php echo $artikel[4]['title'] ?></div>
<?php } ?>
I want the data display like the picture below:
