i want to query something from mysql database and put condition that check equality between a value in the table but after round it and other value also after round it how to do this in php codeigniter ,plz help i put this instruction put it didn't work
$t=round($latitude,4);
$t1=round($longitude,4);
$this->db->select('place_name');
$this->db->from('place');
$this->db->where(round(`Latitude`,4), $t);
$this->db->where(round(`Longitude`,4),$t1);
$q = $this->db->get();