$tId = $this->its_model->get_status_type($property_id);
print_r($tId);
$tsId = $this->its_model->get_sub_status_type($tId);
The $tId returns this:
Array ( [0] => Array ( [tId] => 2 ) )
And now I need to use the value 2 in the second line of code. As it is in the form of array I am getting an error. How could I get the value only that is 2?