Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Forum_model extends CI_Model {
- private $db_forum = null;
- //var $db_forum;
- /**
- * Construct
- *
- * @return void
- */
- function __construct() {
- parent::__construct();
- $this->db_forum = $this->load->database('forum',TRUE);
- }
- function test()
- {
- $query = "SELECT COUNT(cid_jenis_kelamin) FROM pegawai WHERE cid_jenis_kelamin='l'; ";
- $result = $this->db_forum->query($query);
- return $result->result();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment