Agar data disertakan pada saat pemanggilan view tidak terbatas pada array sederhana saja. Anda juga dapat melewatkan multidimensional array sebagai data, dimana dapat dilakukan perulangan untuk menampilkannya.
Buat source code coba.php di controller :
<?php
class Blog extends CI_Controller{
public function index()
{
$data['title']='COBA';
$data['artikel']=array(
array (
'judul' =>'Artikel Pertamaku',
'isi' =>' Isi 1',
),
array (
'judul' =>'Artikel Ke -2 ',
'isi' =>' Isi 2',
),
array (
'judul' =>'Artikel Ke 3',
'isi' =>' Isi 3',
),
);
$this->load->view('blog_view',$data);
}
}
?>
Source code Coba.php
Buat source code coba_view.php di View:
<html>
<head>
<title><?php echo $title; ?></title>
<body>
<?php foreach ($artikel as $row){?>
<h2><?php echo $row['judul'];?></h2>
<p><?php echo $row['isi'];?></p>
<? }?>
</body>
</head>
Source coba_view.php
Maka hasilnya seperti gambar dibawah ini
Blog informasi yang mengenalkan Sistem Manajemen Informasi , Teknik Informatika dan pemrograman komputer
Friday, December 12, 2014
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment