It looks like you're new here. If you want to get involved, click one of these buttons!
$test = this->reviews_model->find_by_key('45')->stars;
print_r($test);
$test = $this->db->select('stars')->from('testimonials')->where(array('id' => '45'))->get()->row();
print_r($test);
stdClass Object
(
[stars] => 3.5
)
Comments
Question: When updating Fuel, all I need to do is replace /fuel/modules/fuel correct?
Thanks!