我正在尝试显示我的数据库的一些推荐,但是在尝试不同的代码组合 2 天后,我不得不放弃并希望这里的人比我更了解 :)
这是我到目前为止所拥有的:
模型:
function getTestimonials() {
$this->db->select('*');
$this->db->from('feedback_comments');
$c = $this->db->get();
return $c;
}
控制器:
$testimonials = $this->feedback_model->getTestimonials();
$this->outputData['testimonials'] = $testimonials;
最后是视图:
<?php $i = 1; foreach($testimonials as $testimonial) { ?>
<?php echo $testimonial->dated; ?>, <?php echo $testimonial->comment; ?>
<?php } ?>
由于某种原因,没有显示结果。它没有显示任何错误,但它确实显示了 7 行,每行有两个逗号,这很奇怪,因为 BD 只有一条记录。
关于我做错了什么的任何线索?
提前致谢 :)