SlideShare a Scribd company logo
3
Most read
4
Most read
6
Most read
Simple login with sessions in
CodeIgniter 3
config/routes.php
$route['default_controller'] = 'LoginController';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
LoginController
<?php
defined('BASEPATH') OR exit('No direct script
access allowed');
class LoginController extends CI_Controller {
public function index()
{
$data['title'] ="Login form";
$this->load->view('main_view',$data);
}
public function check()
{
if((($_POST["text1"]=="user1")&&($_POST["pass1"]=="pass1")))
{
$this->session->set_userdata('username',$_POST["text1"]);
return redirect('LoginController/ura');
}
else{
echo "Wrong input!";
exit;
}
}
public function ura()
{
if($this->session->userdata('username')){
$data['uname']=$this->session->userdata('username');
$this->load->view('ura',$data);
}
else{
return redirect('LoginController/index');
}
}
public function logout()
{
$this->session->sess_destroy();
redirect('LoginController/index');
}
}
views/main_view.php
<h1>
<?php echo $title; ?>
</h1>
<?php
echo form_open('LoginController/check');
#text control
$data = ['name' => 'text1',
'id' => 'text1',
'value' => '',
'maxlength' => '100',
'size' => '30',
'placeholder'=>'username',
];
#label
echo form_label('Username ', 'text1');
echo form_input($data);
echo "<br><br>";
#password control
$pass = ['name' => 'pass1',
'id' => 'pass1',
'maxlength' => '100',
'size' => '30',
'placeholder'=>'password',
];
echo form_label('Password ', 'pass1');
echo form_password($pass);
echo "<br><br>";
#submit button
echo form_submit('submit', 'Submit!');
echo form_close();
ura.blade.php
<?php
echo "Welcome ".$uname."!";
echo "<br/><br/>";
?>
<a href="<?php echo site_url('LoginController/logout') ?>">Logout</a><br/><br/>

More Related Content

What's hot (19)

DOCX
TICT #13
azman_awan9
 
DOCX
TICT #11
azman_awan9
 
PPTX
Goodbye hook_menu() - Routing and Menus in Drupal 8
Exove
 
PDF
Jinja2 Templates - San Francisco Flask Meetup
Alan Hamlett
 
ODP
Drupal 8 Routing
Yuriy Gerasimov
 
PPTX
14. CodeIgniter adaugarea inregistrarilor
Razvan Raducanu, PhD
 
PDF
Building scalable products with WordPress - WordCamp London 2018
Elliot Taylor
 
PDF
SQL so close I can paste it (YAPC::NA::2011 lightning talk)
bradoaks
 
PPTX
Routing in Drupal 8
kgoel1
 
PPTX
20. CodeIgniter edit images
Razvan Raducanu, PhD
 
PDF
Practica csv
Nones Pomposo
 
PPTX
16. CodeIgniter stergerea inregistrarilor
Razvan Raducanu, PhD
 
PDF
Growing jQuery
gueste8d8bc
 
PDF
Laravel the right way
Matheus Marabesi
 
PPT
07 Php Mysql Update Delete
Geshan Manandhar
 
PPTX
15. CodeIgniter editarea inregistrarilor
Razvan Raducanu, PhD
 
PDF
Laravel, the right way - PHPConference 2016
Matheus Marabesi
 
PPTX
6. hello popescu 2
Razvan Raducanu, PhD
 
PDF
Owasp & php
Ahmed Kamel Taha
 
TICT #13
azman_awan9
 
TICT #11
azman_awan9
 
Goodbye hook_menu() - Routing and Menus in Drupal 8
Exove
 
Jinja2 Templates - San Francisco Flask Meetup
Alan Hamlett
 
Drupal 8 Routing
Yuriy Gerasimov
 
14. CodeIgniter adaugarea inregistrarilor
Razvan Raducanu, PhD
 
Building scalable products with WordPress - WordCamp London 2018
Elliot Taylor
 
SQL so close I can paste it (YAPC::NA::2011 lightning talk)
bradoaks
 
Routing in Drupal 8
kgoel1
 
20. CodeIgniter edit images
Razvan Raducanu, PhD
 
Practica csv
Nones Pomposo
 
16. CodeIgniter stergerea inregistrarilor
Razvan Raducanu, PhD
 
Growing jQuery
gueste8d8bc
 
Laravel the right way
Matheus Marabesi
 
07 Php Mysql Update Delete
Geshan Manandhar
 
15. CodeIgniter editarea inregistrarilor
Razvan Raducanu, PhD
 
Laravel, the right way - PHPConference 2016
Matheus Marabesi
 
6. hello popescu 2
Razvan Raducanu, PhD
 
Owasp & php
Ahmed Kamel Taha
 

More from Razvan Raducanu, PhD (20)

PPTX
12. edit record
Razvan Raducanu, PhD
 
PPTX
11. delete record
Razvan Raducanu, PhD
 
PPTX
10. view one record
Razvan Raducanu, PhD
 
PPTX
9. add new record
Razvan Raducanu, PhD
 
PPTX
8. vederea inregistrarilor
Razvan Raducanu, PhD
 
PPTX
7. copy1
Razvan Raducanu, PhD
 
PPTX
5. hello popescu
Razvan Raducanu, PhD
 
PPTX
4. forme in zend framework 3
Razvan Raducanu, PhD
 
PPTX
3. trimiterea datelor la vederi
Razvan Raducanu, PhD
 
PPTX
2.routing in zend framework 3
Razvan Raducanu, PhD
 
PPTX
1. zend framework intro
Razvan Raducanu, PhD
 
PPTX
18. images in symfony 4
Razvan Raducanu, PhD
 
PPTX
17. delete data
Razvan Raducanu, PhD
 
PPTX
16. edit data
Razvan Raducanu, PhD
 
PPTX
15. view single data
Razvan Raducanu, PhD
 
PPTX
14. add data in symfony4
Razvan Raducanu, PhD
 
PPTX
13. view data
Razvan Raducanu, PhD
 
PPTX
12.doctrine view data
Razvan Raducanu, PhD
 
PPTX
11. move in Symfony 4
Razvan Raducanu, PhD
 
PPTX
10. add in Symfony 4
Razvan Raducanu, PhD
 
12. edit record
Razvan Raducanu, PhD
 
11. delete record
Razvan Raducanu, PhD
 
10. view one record
Razvan Raducanu, PhD
 
9. add new record
Razvan Raducanu, PhD
 
8. vederea inregistrarilor
Razvan Raducanu, PhD
 
5. hello popescu
Razvan Raducanu, PhD
 
4. forme in zend framework 3
Razvan Raducanu, PhD
 
3. trimiterea datelor la vederi
Razvan Raducanu, PhD
 
2.routing in zend framework 3
Razvan Raducanu, PhD
 
1. zend framework intro
Razvan Raducanu, PhD
 
18. images in symfony 4
Razvan Raducanu, PhD
 
17. delete data
Razvan Raducanu, PhD
 
16. edit data
Razvan Raducanu, PhD
 
15. view single data
Razvan Raducanu, PhD
 
14. add data in symfony4
Razvan Raducanu, PhD
 
13. view data
Razvan Raducanu, PhD
 
12.doctrine view data
Razvan Raducanu, PhD
 
11. move in Symfony 4
Razvan Raducanu, PhD
 
10. add in Symfony 4
Razvan Raducanu, PhD
 
Ad

Recently uploaded (20)

PDF
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
PPTX
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
PPTX
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
PDF
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
PDF
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PPTX
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PDF
CEREBRAL PALSY: NURSING MANAGEMENT .pdf
PRADEEP ABOTHU
 
PDF
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
PDF
People & Earth's Ecosystem -Lesson 2: People & Population
marvinnbustamante1
 
PPT
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
PDF
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
PDF
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
PPTX
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PDF
Dimensions of Societal Planning in Commonism
StefanMz
 
PDF
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
PDF
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
CEREBRAL PALSY: NURSING MANAGEMENT .pdf
PRADEEP ABOTHU
 
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
People & Earth's Ecosystem -Lesson 2: People & Population
marvinnbustamante1
 
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
Dimensions of Societal Planning in Commonism
StefanMz
 
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
Ad

24. CodeIgniter simple login with sessions