@ryleigh
In CodeIgniter, you can remove the slash in the where condition by using the following methods:
1
|
$this->db->where('column_name', $value);
|
1 2 |
$where_array = array('column_name' => $value);
$this->db->where($where_array);
|
1
|
$this->db->where("column_name = $value");
|
By using these methods, you can remove the slash in the where condition in your CodeIgniter application.