データベースからいくつかの値を取得し、codeigniter を使用してテーブルに配置しようとしていますが、機能していないようです。
これは私のモデルです
function getlogrecords(){
$query = $this->db->get('selfimpact_log');
return $query->results();
}
これは私のコントローラーです
public function abt_article() {
$data= array();
$query = $this->abt_db->getlogrecords();
$data['logs']= $query;
$this->load->view('abt_article', $data);
}
景色
<table data-role="table" id="table-column-toggle" data-mode="columntoggle" class="ui-responsive table-stroke" data-inset="true">
<thead>
<tr>
<th data-priority="1">Statements</th>
<th data-priority="2">Try these positive affirmations</th>
</tr>
</thead>
<tbody>
<?php if(isset($logs)): foreach($logs as $row);?>
<tr>
<td><?php echo $row->log_id;?></td>
<td>I am ashamed and embarrassed that I have Postnatal Depression.</td>
</tr>
<tr>
<td><?php echo $row->logTime;?></td>
<td>What I am feelings are symptoms of illness. I am not making this up</td>
</tr>
<?php endforeach;?>
<?php else : ?>
<tr>
<td>No records found.</td>
</tr>
<?php endif;?>
</tbody>
</table>