Я думаю, что вы ищете:
$this->db->count_all('songs_tbl');
или, если вы хотите, чтобы там было различное, вам нужно будет сделать что-то вроде этого:
$this->db->select('song_id');
$this->db->distinct();
$this->db->from('songs_tbl');
$query = $this->db->get();
return $query->num_rows();
Поскольку есть / было?проблема с использованием функции count_all_results()
и DISTINCT
EDIT
Я никогда не использовал smarty, но на основе кода в вопросе, который я представляючто-то вроде этого может работать, пожалуйста, исправьте меня, если я ошибаюсь:
private function getHeaderInfo()
{
$total_songs = get_all_songs();// This function should be called through a model
$this->mysmarty->assign('total_songs',$total_songs);
}
function get_all_songs(){ //THIS SHOULD BE IN A MODEL
$this->db->select('song_id');
$this->db->distinct();
$this->db->from('songs_tbl');
$query = $this->db->get();
return $query->num_rows();
}
Редактировать 2
Мой предложенный макет будет что-то вродеэти строки (НЕПРОВЕРЕНО) с использованием CodeIgniter БЕЗ smarty:
Модель Song.php
class Song extends CI_Model {
//Constructor and other functions
function count_all_songs(){
$this->db->select('song_id');
$this->db->distinct();
$this->db->from('songs_tbl');
$query = $this->db->get();
return $query->num_rows();
}
}
Контроллер Songs.php
class Song extends CI_Controller {
//Constructor and other functions
function index(){ //This could be any page
$this->load->model('Song'); //Could be in constructor
$total_songs = $this->Song->count_all_songs();
$this->load->view('songs_index.html', array('total_songs' => $total_songs));
}
}
Просмотр songs_index.html
<html><head></head><body>
Total Songs: <?php echo $total_songs ?>
</body></html>