[eluser]aquary[/eluser]
Not sure since it's not the way I code.
Try this:
Code:
//Home
function index()
/////////////////////////////Gets Message Data//////////////////////////////////////
$userid = $this->session->userdata('id');
$this->db->select('*')->from('message')->where('user', $userid);
$data['test'] = $this->db->get()->result();
/////////////////////////////////////////////////////////////////////////////////////////
// you could var_dump() here to check if the returned result is good.
// var_dump($data['test']);
$this->load->view('index', $data);
}
Code:
<? include("include/header.php"); ?>
<?
if ($test)
{
foreach ($test as $row)
{
echo $row->user;
echo $row->message;
echo $row->created;
}
}
else
echo "Nothing to Display";
?>
<? include("include/footer.php"); ?>