รายละเอียดของการตอบ ::
ต้องใส่โค้ดอะไรลงไปอะครับ
?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Register extends MY_Controller {
public function __construct()
{
parent::__construct();
// LOAD MODEL
$this->load->model('userModel', '', true);
$this->load->model('productModel', '', true);
$this->load->model('model_register', '', true);
// LOAD LIBRARY
$this->load->library('MyUpload');
$this->load->library('MyDateSystem');
$this->load->library('MyExcel');
$this->load->helper(array('form', 'url')); // โหลดเฮลเปอร์ form และ url ของ ci มาใช้งาน
$this->load->library('form_validation'); // โหลดไลบรารี่ form_validation ของ ci มาใช้งาน
$this->load->library('session'); // เรียกใช้งาน session
/*$this->load->library('MyUpload');
$this->load->library('MyDateSystem');*/
}
public function index()
{
if (!$this->session->userdata('userLogData')) {
$this->data['title'] = 'ระบบฐานข้อมูลครุภัณฑ์และทรัพย์สินในสำนักงาน';
$this->content = 'login';
$this->layout('full-width-no-header');
} else {
redirect('register/validate', 'refresh');
}
}
public function validate()
{
$mb_add['username'] = $this->input->post('username');
$mb_add['password'] = md5($this->input->post("password"));
$mb_add['name'] = $this->input->post('name');
$date = date('Y-m-d H:i:s');
$getSoldDate = $this->input->post('txt_soldDate');
$getWarrantyFrom = $this->input->post('warrantyFrom');
$getWarrantyTo = $this->input->post('warrantyTo');
$mb_ins=$this->db->insert('users',$mb_add);
if($mb_ins) {
header ('localhost'.base_url()."index.php/register_view");
}else{
echo"ไม่สามารถเพิ่มสมาชิกได้";
}
{
$this->data['title'] = 'สมัครสมาชิก';
//$this->load->view('register_view');
$this->content = 'register/register_view';
$this->layout();
แล้วก็ สมัครลงไปแล้ว แต่ไม่สามารถล็อกอินได้ ขอบคุณครับ