Advertisement
Guest User

login

a guest
Jan 25th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php defined('DIRECT') OR exit('No direct script access allowed');
  2.  
  3. class Home extends Controller {
  4. public function __construct() {
  5. parent::__construct();
  6. }
  7.  
  8. public function index() {
  9. $this->load->view('home');
  10. }
  11.  
  12. public function login() {
  13. $this->load->plugin('Session');
  14.  
  15. if($this->Session->get('user_id')) {
  16. echo "Giriş yapılmış";
  17. }
  18.  
  19. $this->load->view("home_view");
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement