Welcome Guest, Not a member yet? Register   Sign In
Get the value from DropDown list [RESOLVED]
#2

Absolutely.

In your controller:
PHP Code:
$milestone_id $this->input->post('milestone_id');
$this->db
->select('SUM(estimated_hours) as value_sum')
->
from('project_has_tasks')
->
where('milestone_id'$milestone_id);
$sum $this->db->get()->row()->value_sum
Reply


Messages In This Thread
RE: Get the value from DropDown list - by Wouter60 - 12-02-2016, 03:22 PM



Theme © iAndrew 2016 - Forum software by © MyBB