mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-22 17:52:16 +00:00
count rows returns 1 even with 0 as result ...
This commit is contained in:
parent
475820d09b
commit
5b7a31fe11
@ -3,32 +3,26 @@
|
||||
class Setup_model extends CI_Model {
|
||||
|
||||
function getCountryCount() {
|
||||
$sql = 'select count(*) from dxcc_entities';
|
||||
$query = $this->db->query($sql);
|
||||
$sql = 'select count(*) as count from dxcc_entities';
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
$result = $query->result();
|
||||
|
||||
return count($result);
|
||||
return $query->row()->count;
|
||||
}
|
||||
|
||||
function getLogbookCount() {
|
||||
$userid = xss_clean($this->session->userdata('user_id'));
|
||||
$sql = 'select count(*) from station_logbooks where user_id =' . $userid;
|
||||
$query = $this->db->query($sql);
|
||||
$sql = 'select count(*) as count from station_logbooks where user_id =' . $userid;
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
$result = $query->result();
|
||||
|
||||
return count($result);
|
||||
return $query->row()->count;
|
||||
}
|
||||
|
||||
function getLocationCount() {
|
||||
$userid = xss_clean($this->session->userdata('user_id'));
|
||||
$sql = 'select count(*) from station_profile where user_id =' . $userid;
|
||||
$query = $this->db->query($sql);
|
||||
$sql = 'select count(*) as count from station_profile where user_id =' . $userid;
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
$result = $query->result();
|
||||
|
||||
return count($result);
|
||||
return $query->row()->count;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user