Hello,
Sorry for my English.
With this function , I retrieves the number of identical record in the " from_user_id " the table "user- love" .
num_rows() displays the number of recording
I want to insert a new tabe "score" value " from_user_id " and the result given by " num_row " that two field " from_user_id " and " nb_kiff
but I can not seem to find the right combination .
Is a charming young man can help me to complete this function ?
thank you in advance
Here is my Model
Code:
function count_add_kiff($add_kiff) {
$query = $this->db->select("from_user_id");
$query = $this->db->from("user_love");
$query = $this->db->like("from_user_id", $add_kiff);
$query = $this->db->get();
return $query->num_rows();
Here is my Controleur
Code:
$add_kiff = $this->news_model->count_add_kiff($this->session->userdata("user_id"));
$data["ajout_kiff"] = $add_kiff;