//controller Index class Index extends CI_Controller { function __construct(){ parent::__construct(); header ('Content-type: text/html; charset=utf-8'); } function index(){ $data['title'] = "travel hotel booking"; $data['useronline'] = $this->get_useronline(); $this->load->view('index',$data); } function get_useronline(){ $session_id = $this->session->userdata('session_id'); $rs = $this->db->query(" select id from big_counter where session='$session_id' "); if( $rs->num_rows() <= 0 ){ $sql = " insert into big_counter values(null,'$session_id','".date('Y-m-d H:i:s')."','".$this->get_ip()."') "; $this->db->query($sql); } $rs = $this->db->query(" select id from big_counter "); return $rs->num_rows(); }
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); if ( ! function_exists('get_useronline')) { function get_useronline() { $CI =& get_instance(); $CI->load->library('session'); $CI->load->database(); $session_id = $CI->session->userdata('session_id'); $rs = $CI->db->query(" select id from big_counter where session='$session_id' "); if( $rs->num_rows() <= 0 ) { $sql = " insert into big_counter values(null,'$session_id','".date('Y-m-d H:i:s')."','".$this->get_ip()."') "; $CI->db->query($sql); } $rs = $CI->db->query(" select id from big_counter "); return $rs->num_rows(); } } ?>
$config['helper'] = array('useronline_helper','..your helper..','..');
<?php echo get_useronline(); ?>
$this->load->helper("helper_name");
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง