Welcome Guest, Not a member yet? Register   Sign In
Calculate value with data from another model
#2

Calculations should happen in your controller.

PHP Code:
public function myCalculation()
{
  $this->load->model('seminar');
  
$this->load->model('seminar_date');
  
$dataSeminar $this->seminar->find_by_id($id);
  
$dataSeminarDate $this->seminar_date->find_by_id($id);

  
// Do your calculations

Reply


Messages In This Thread
RE: Calculate value with data from another model - by ZoeF - 03-29-2020, 06:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB