Welcome Guest, Not a member yet? Register   Sign In
Form radio buttons will not validate, need help.
#5

[eluser]CroNiX[/eluser]
Well, you're not returning the total from your function
Code:
public function count_hygiene_factor($name)
{
  //query to sum up the scores
  //Need to provide an alias for your total in order to retrieve it from the result
  $sql = "SELECT SUM(Factor2Score + Factor5Score + Factor6Score + Factor8Score + Factor9Score + Factor12Score) AS `total`
      from FactorSurveyScore
      where Name = ?";
  
  //2nd parameter for bindings should be an array of data in order that they appear in the query.
  $q = $this->db->query($sql, array($name))->row();

  if ($q->num_rows() > 0)  //check for result
  {
    return $q->total;  //actually return the value
  }
  else
  {
    return 0;
  }
}


Messages In This Thread
Form radio buttons will not validate, need help. - by El Forum - 05-09-2012, 08:19 AM
Form radio buttons will not validate, need help. - by El Forum - 05-09-2012, 09:41 AM
Form radio buttons will not validate, need help. - by El Forum - 05-09-2012, 10:10 AM
Form radio buttons will not validate, need help. - by El Forum - 05-10-2012, 09:53 AM
Form radio buttons will not validate, need help. - by El Forum - 05-10-2012, 10:06 AM
Form radio buttons will not validate, need help. - by El Forum - 05-10-2012, 10:28 AM
Form radio buttons will not validate, need help. - by El Forum - 05-10-2012, 10:33 AM
Form radio buttons will not validate, need help. - by El Forum - 05-10-2012, 10:38 AM
Form radio buttons will not validate, need help. - by El Forum - 05-10-2012, 10:39 AM
Form radio buttons will not validate, need help. - by El Forum - 05-10-2012, 10:41 AM
Form radio buttons will not validate, need help. - by El Forum - 05-10-2012, 10:50 AM
Form radio buttons will not validate, need help. - by El Forum - 05-11-2012, 07:14 AM
Form radio buttons will not validate, need help. - by El Forum - 05-11-2012, 09:21 AM
Form radio buttons will not validate, need help. - by El Forum - 05-11-2012, 09:26 AM
Form radio buttons will not validate, need help. - by El Forum - 05-11-2012, 09:30 AM
Form radio buttons will not validate, need help. - by El Forum - 05-11-2012, 09:44 AM
Form radio buttons will not validate, need help. - by El Forum - 05-11-2012, 09:51 AM



Theme © iAndrew 2016 - Forum software by © MyBB