SlideShare a Scribd company logo
1 of 33
WELCOME
INTRODUCTION TO PHP
SESSIONS AND COOKIES
What you Benefit ???
By the end of this session you will learn
● How to use Sessions and Cookies to maintain the state among
multiple requests.
TASK OF THE DAY
Create a session when a user log in to his account. When user logout from his
account the session should expire
LOGIN PAGE
INTRODUCTION TO PHP SESSIONS AND
COOKIES
Introduction To PHP Sessions And
Cookies
We had already tried passing data to a server .
But..how the server knows the user from which the requests are
received…?
COOKIES
Cookies
•HTTP is a stateless protocol; this means that the web server does not
know (or care) whether two requests comes from the same user or
not; it just handles each request without regard to the context in
which it happens.
•Cookies are used to maintain the state in between requests—even
when they occur at large time intervals from each other.
•Cookies allow your applications to store a small amount of textual
data (typically,4-6kB) on a Web client browser.
•There are a number of possible uses for cookies, although their most
common one is maintaining state of a user
Creating A Cookie
• setcookie(“userid", "100", time() + 86400);
• This simply sets a cookie variable named “userid” with value “100” and this
variable value will be available till next 86400 seconds from current time
Cookie variable name
variable value
Expiration time.
Accessing a Cookie
• echo $_COOKIE[’userid’]; // prints 100
• Cookie as array
– setcookie("test_cookie[0]", "foo");
– setcookie("test_cookie[1]", "bar");
– setcookie("test_cookie[2]", "bar");
– var_dump($_COOKIE[‘test_cookie’]);
Destroying A Cookie
•There is no special methods to destroy a cookie, We achieve it by
setting the cookie time into a past time so that it destroys it
– Eg : setcookie(‘userid’,100,time()-100);
SESSIONS
Sessions
•Session serve the same purpose of cookies that is sessions are used to
maintain the state in between requests
•Session can be started in two ways in PHP
– By changing the session.auto_start configuration setting in php.ini
– Calling session_start() on the beginning of each pages wherever you
use session(Most common way)
Note: session_start() must be called before any output is sent to the
browser
Creating and accessing session
• Once session is started you can create and access
session variables like any other arrays in PHP
– $_SESSION[‘userid’] = 100;
– echo $_SESSION[‘userid’]; //prints 100
Session variable name
variable value
Destroying A Session
•There are two methods to destroy a session variable
1. Using unset() function
• Eg unset($_SESSION[‘userid’])
1. Calling session_destroy() method. This will effectively destroy all the
session variables. So for deleting only one variable you should go for
the previous method
• Session_destroy()
Let’s try implementing with our task
Step 1
Goto Login_baabtra.php page and set form action to Profile.php page
<form name=”login” action=”login_action.php” method=”post”>
Step 2
Login_action.php Page
Create database connection here
mysql_connect('localhost','root','');
mysql_select_db("Baabtra");
$result=mysql_query("select * from tbl_user where
vchr_user_name='$username'and vchr_password='$password'");
Step 3
Login_action.php Page
Check whether id is valid or not.if valid user then create session
if(mysql_num_rows($result)){
while($row=mysql_fetch_array($result)){
session_start();
$_SESSION['user_id']=$row['pk_int_user_id'];
header(‘Location: profile.php’);
}
}
checks whether there is any
resultant
Step 3
Login_action.php Page
Check whether id is valid or not.if valid user then create session
if(mysql_num_rows($result)){
while($row=mysql_fetch_array($result)){
session_start();
$_SESSION['user_id']=$row['pk_int_user_id'];
header(‘Location: profile.php’);
}
}
starts a session
Step 3
Login_action.php Page
Check whether id is valid or not.if valid user then create session
if(mysql_num_rows($result)){
while($row=mysql_fetch_array($result)){
session_start();
$_SESSION['user_id']=$row['pk_int_user_id'];
header(‘Location: profile.php’);
}
} sets a session variable
userid
with value of pk_int_user_id
field of the resultant set
Step 3
Login_action.php Page
Check whether id is valid or not.if valid user then create session
if(mysql_num_rows($result)){
while($row=mysql_fetch_array($result)){
session_start();
$_SESSION['user_id']=$row['pk_int_user_id'];
header(‘Location: profile.php’);
}
} sets a session variable
userid
with value of pk_int_user_id
field of the resultant set
Step 3
Login_action.php Page
Check whether id is valid or not.if valid user then create session
if(mysql_num_rows($result)){
while($row=mysql_fetch_array($result)){
session_start();
$_SESSION['user_id']=$row['pk_int_user_id'];
header(‘Location: profile.php’);
}
}
sets a session variable
userid
with value of pk_int_user_id
field of the resultant set
Step 3
Login_action.php Page
Check whether id is valid or not.if valid user then create session
if(mysql_num_rows($result)){
while($row=mysql_fetch_array($result)){
session_start();
$_SESSION['user_id']=$row['pk_int_user_id'];
header(‘Location: profile.php’);
}
}
header function is used for
page redirection
Step 4
Design a profile Page and Create a link for Logout
Step 5
Go to profile page and display Qualification details of that particular user
using session variable.
Step 5
Profile.php
session_start();
$user_id=$_SESSION['user_id'];
mysql_connect('localhost','root','');
mysql_select_db("Baabtra");
$result=mysql_query("select * from tbl_academic_qualificaion where
fk_int_user_id='$user_id'");
echo “ qualification name-----college--------percentage--------passout”;
while($data=mysql_fetch_assoc($result)){
echo $data['vchr_qualification_name'];
echo $data['vchr_qualification_name'];
echo $data['int_percentage'];
echo $data['dat_passout_date'];
}
Step 5
Profile.php
session_start();
$user_id=$_SESSION['user_id'];
mysql_connect('localhost','root','');
mysql_select_db("Baabtra");
$result=mysql_query("select * from tbl_academic_qualificaion where
fk_int_user_id='$user_id'");
echo “ qualification name-----college--------percentage--------passout”;
while($data=mysql_fetch_assoc($result)){
echo $data['vchr_qualification_name'];
echo $data['vchr_qualification_name'];
echo $data['int_percentage'];
echo $data['dat_passout_date'];
}
fetches the session variable
user_id and stores to
variable $userid
Step 5
Profile.php
session_start();
$user_id=$_SESSION['user_id'];
mysql_connect('localhost','root','');
mysql_select_db("Baabtra");
$result=mysql_query("select * from tbl_academic_qualificaion where
fk_int_user_id='$user_id'");
echo “ qualification name-----college--------percentage--------passout”;
while($data=mysql_fetch_assoc($result)){
echo $data['vchr_qualification_name'];
echo $data['vchr_qualification_name'];
echo $data['int_percentage'];
echo $data['dat_passout_date'];
}
selects the qualification
details of the user that
matches with session value
Step 6
Destroy session on Logout
Step 6
Logout.php
unset($_SESSION[‘user_id’]);
header(‘Location: Login_baabtra.php’);
Comparison
Cookies are stored in the user's
browser
A cookie can keep information in
the user's browser until deleted
by user or set as per the timer. It
will not be destroyed even if you
close the browser.
Cookies can only store string
We can save cookie for future
reference
Sessions are stored in server
A session is available as long as the
browser is opened. User cant disable
the session. It will be destroyed if you
close the browser
Can store not only strings but also
objects
session cant be.
Cookies Session
END OF THE SESSION

More Related Content

What's hot (20)

Php array
Php arrayPhp array
Php array
 
Arrays in PHP
Arrays in PHPArrays in PHP
Arrays in PHP
 
MYSQL - PHP Database Connectivity
MYSQL - PHP Database ConnectivityMYSQL - PHP Database Connectivity
MYSQL - PHP Database Connectivity
 
PHP - Introduction to PHP AJAX
PHP -  Introduction to PHP AJAXPHP -  Introduction to PHP AJAX
PHP - Introduction to PHP AJAX
 
Cookie and session
Cookie and sessionCookie and session
Cookie and session
 
Php server variables
Php server variablesPhp server variables
Php server variables
 
HTTP request and response
HTTP request and responseHTTP request and response
HTTP request and response
 
Oops concepts in php
Oops concepts in phpOops concepts in php
Oops concepts in php
 
Get method and post method
Get method and post methodGet method and post method
Get method and post method
 
php
phpphp
php
 
Network programming in java - PPT
Network programming in java - PPTNetwork programming in java - PPT
Network programming in java - PPT
 
Express js
Express jsExpress js
Express js
 
Java script arrays
Java script arraysJava script arrays
Java script arrays
 
Client side scripting and server side scripting
Client side scripting and server side scriptingClient side scripting and server side scripting
Client side scripting and server side scripting
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state management
 
A Basic Django Introduction
A Basic Django IntroductionA Basic Django Introduction
A Basic Django Introduction
 
Java Server Pages(jsp)
Java Server Pages(jsp)Java Server Pages(jsp)
Java Server Pages(jsp)
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
 
Php Error Handling
Php Error HandlingPhp Error Handling
Php Error Handling
 
ASP.NET Page Life Cycle
ASP.NET Page Life CycleASP.NET Page Life Cycle
ASP.NET Page Life Cycle
 

Viewers also liked

Sessions and cookies
Sessions and cookiesSessions and cookies
Sessions and cookieswww.netgains.org
 
Php ssession - cookies -introduction
Php ssession - cookies -introductionPhp ssession - cookies -introduction
Php ssession - cookies -introductionProgrammer Blog
 
PHP Cookies, Sessions and Authentication
PHP Cookies, Sessions and AuthenticationPHP Cookies, Sessions and Authentication
PHP Cookies, Sessions and AuthenticationGerard Sychay
 
Cookies PowerPoint
Cookies PowerPointCookies PowerPoint
Cookies PowerPointemurfield
 
Web Cookies
Web CookiesWeb Cookies
Web Cookiesapwebco
 
Pakistan's mountain ranges
Pakistan's mountain rangesPakistan's mountain ranges
Pakistan's mountain rangestehseen bukhari
 
Mountains In Pakistan
Mountains In PakistanMountains In Pakistan
Mountains In PakistanAyesha Shoukat
 
Plains, plateaus and deserts in pakistan
Plains, plateaus and deserts in pakistanPlains, plateaus and deserts in pakistan
Plains, plateaus and deserts in pakistanAqsa Manzoor
 
Mountains of Pakistan any physiography
Mountains of Pakistan any physiography Mountains of Pakistan any physiography
Mountains of Pakistan any physiography GCUF
 
Physical features of pakistan
Physical features of pakistanPhysical features of pakistan
Physical features of pakistanAmad Qurashi
 
Presentation on Internet Cookies
Presentation on Internet CookiesPresentation on Internet Cookies
Presentation on Internet CookiesRitika Barethia
 
Slides For Operating System Concepts By Silberschatz Galvin And Gagne
Slides For Operating System Concepts By Silberschatz Galvin And GagneSlides For Operating System Concepts By Silberschatz Galvin And Gagne
Slides For Operating System Concepts By Silberschatz Galvin And Gagnesarankumar4445
 

Viewers also liked (17)

PHP - Introduction to PHP Cookies and Sessions
PHP - Introduction to PHP Cookies and SessionsPHP - Introduction to PHP Cookies and Sessions
PHP - Introduction to PHP Cookies and Sessions
 
Sessions and cookies
Sessions and cookiesSessions and cookies
Sessions and cookies
 
Php ssession - cookies -introduction
Php ssession - cookies -introductionPhp ssession - cookies -introduction
Php ssession - cookies -introduction
 
Php database connectivity
Php database connectivityPhp database connectivity
Php database connectivity
 
Introduction to php web programming - sessions and cookies
Introduction to php   web programming - sessions and cookiesIntroduction to php   web programming - sessions and cookies
Introduction to php web programming - sessions and cookies
 
PHP Cookies, Sessions and Authentication
PHP Cookies, Sessions and AuthenticationPHP Cookies, Sessions and Authentication
PHP Cookies, Sessions and Authentication
 
Cookies PowerPoint
Cookies PowerPointCookies PowerPoint
Cookies PowerPoint
 
Web Cookies
Web CookiesWeb Cookies
Web Cookies
 
Pakistan's mountain ranges
Pakistan's mountain rangesPakistan's mountain ranges
Pakistan's mountain ranges
 
Mountains In Pakistan
Mountains In PakistanMountains In Pakistan
Mountains In Pakistan
 
PHP: Cookies
PHP: CookiesPHP: Cookies
PHP: Cookies
 
Plains, plateaus and deserts in pakistan
Plains, plateaus and deserts in pakistanPlains, plateaus and deserts in pakistan
Plains, plateaus and deserts in pakistan
 
Mountains of Pakistan any physiography
Mountains of Pakistan any physiography Mountains of Pakistan any physiography
Mountains of Pakistan any physiography
 
Physical features of pakistan
Physical features of pakistanPhysical features of pakistan
Physical features of pakistan
 
Geography of Pakistan
Geography of PakistanGeography of Pakistan
Geography of Pakistan
 
Presentation on Internet Cookies
Presentation on Internet CookiesPresentation on Internet Cookies
Presentation on Internet Cookies
 
Slides For Operating System Concepts By Silberschatz Galvin And Gagne
Slides For Operating System Concepts By Silberschatz Galvin And GagneSlides For Operating System Concepts By Silberschatz Galvin And Gagne
Slides For Operating System Concepts By Silberschatz Galvin And Gagne
 

Similar to Php sessions & cookies

Lecture8 php page control by okello erick
Lecture8 php page control by okello erickLecture8 php page control by okello erick
Lecture8 php page control by okello erickokelloerick
 
PHP SESSIONS & COOKIE.pptx
PHP SESSIONS & COOKIE.pptxPHP SESSIONS & COOKIE.pptx
PHP SESSIONS & COOKIE.pptxShitalGhotekar
 
season management in php (WT)
season management in php (WT)season management in php (WT)
season management in php (WT)kunjan shah
 
PHP-Cookies-Sessions.pdf
PHP-Cookies-Sessions.pdfPHP-Cookies-Sessions.pdf
PHP-Cookies-Sessions.pdfHumphreyOwuor1
 
Session Management & Cookies In Php
Session Management & Cookies In PhpSession Management & Cookies In Php
Session Management & Cookies In PhpHarit Kothari
 
PHP COOKIES AND SESSIONS
PHP COOKIES AND SESSIONSPHP COOKIES AND SESSIONS
PHP COOKIES AND SESSIONSDegu8
 
Lecture 11 - PHP - Part 5 - CookiesSessions.ppt
Lecture 11 - PHP - Part 5 - CookiesSessions.pptLecture 11 - PHP - Part 5 - CookiesSessions.ppt
Lecture 11 - PHP - Part 5 - CookiesSessions.pptSreejithVP7
 
4.4 PHP Session
4.4 PHP Session4.4 PHP Session
4.4 PHP SessionJalpesh Vasa
 
Sessions in php
Sessions in php Sessions in php
Sessions in php Mudasir Syed
 
Security in php
Security in phpSecurity in php
Security in phpJalpesh Vasa
 
Authentication
AuthenticationAuthentication
Authenticationsoon
 
Jsp session tracking
Jsp   session trackingJsp   session tracking
Jsp session trackingrvarshneyp
 
FP512 Cookies sessions
FP512 Cookies sessionsFP512 Cookies sessions
FP512 Cookies sessionsFatin Fatihayah
 
lecture 13.pptx
lecture 13.pptxlecture 13.pptx
lecture 13.pptxITNet
 
SessionTrackServlets.pptx
SessionTrackServlets.pptxSessionTrackServlets.pptx
SessionTrackServlets.pptxRanjeet Reddy
 

Similar to Php sessions & cookies (20)

Lecture8 php page control by okello erick
Lecture8 php page control by okello erickLecture8 php page control by okello erick
Lecture8 php page control by okello erick
 
PHP SESSIONS & COOKIE.pptx
PHP SESSIONS & COOKIE.pptxPHP SESSIONS & COOKIE.pptx
PHP SESSIONS & COOKIE.pptx
 
season management in php (WT)
season management in php (WT)season management in php (WT)
season management in php (WT)
 
PHP-Cookies-Sessions.pdf
PHP-Cookies-Sessions.pdfPHP-Cookies-Sessions.pdf
PHP-Cookies-Sessions.pdf
 
Session Management & Cookies In Php
Session Management & Cookies In PhpSession Management & Cookies In Php
Session Management & Cookies In Php
 
PHP COOKIES AND SESSIONS
PHP COOKIES AND SESSIONSPHP COOKIES AND SESSIONS
PHP COOKIES AND SESSIONS
 
Manish
ManishManish
Manish
 
Lecture 11 - PHP - Part 5 - CookiesSessions.ppt
Lecture 11 - PHP - Part 5 - CookiesSessions.pptLecture 11 - PHP - Part 5 - CookiesSessions.ppt
Lecture 11 - PHP - Part 5 - CookiesSessions.ppt
 
Sessions n cookies
Sessions n cookiesSessions n cookies
Sessions n cookies
 
4.4 PHP Session
4.4 PHP Session4.4 PHP Session
4.4 PHP Session
 
Sessions in php
Sessions in php Sessions in php
Sessions in php
 
Php session
Php sessionPhp session
Php session
 
17 sessions
17 sessions17 sessions
17 sessions
 
Security in php
Security in phpSecurity in php
Security in php
 
Authentication
AuthenticationAuthentication
Authentication
 
Jsp session tracking
Jsp   session trackingJsp   session tracking
Jsp session tracking
 
FP512 Cookies sessions
FP512 Cookies sessionsFP512 Cookies sessions
FP512 Cookies sessions
 
lecture 13.pptx
lecture 13.pptxlecture 13.pptx
lecture 13.pptx
 
SessionTrackServlets.pptx
SessionTrackServlets.pptxSessionTrackServlets.pptx
SessionTrackServlets.pptx
 
ASP.NET-Web Programming - Sessions and Cookies
ASP.NET-Web Programming - Sessions and CookiesASP.NET-Web Programming - Sessions and Cookies
ASP.NET-Web Programming - Sessions and Cookies
 

More from baabtra.com - No. 1 supplier of quality freshers

More from baabtra.com - No. 1 supplier of quality freshers (20)

Agile methodology and scrum development
Agile methodology and scrum developmentAgile methodology and scrum development
Agile methodology and scrum development
 
Best coding practices
Best coding practicesBest coding practices
Best coding practices
 
Core java - baabtra
Core java - baabtraCore java - baabtra
Core java - baabtra
 
Acquiring new skills what you should know
Acquiring new skills   what you should knowAcquiring new skills   what you should know
Acquiring new skills what you should know
 
Baabtra.com programming at school
Baabtra.com programming at schoolBaabtra.com programming at school
Baabtra.com programming at school
 
99LMS for Enterprises - LMS that you will love
99LMS for Enterprises - LMS that you will love 99LMS for Enterprises - LMS that you will love
99LMS for Enterprises - LMS that you will love
 
Chapter 6 database normalisation
Chapter 6  database normalisationChapter 6  database normalisation
Chapter 6 database normalisation
 
Chapter 5 transactions and dcl statements
Chapter 5  transactions and dcl statementsChapter 5  transactions and dcl statements
Chapter 5 transactions and dcl statements
 
Chapter 4 functions, views, indexing
Chapter 4  functions, views, indexingChapter 4  functions, views, indexing
Chapter 4 functions, views, indexing
 
Chapter 3 stored procedures
Chapter 3 stored proceduresChapter 3 stored procedures
Chapter 3 stored procedures
 
Chapter 2 grouping,scalar and aggergate functions,joins inner join,outer join
Chapter 2  grouping,scalar and aggergate functions,joins   inner join,outer joinChapter 2  grouping,scalar and aggergate functions,joins   inner join,outer join
Chapter 2 grouping,scalar and aggergate functions,joins inner join,outer join
 
Chapter 1 introduction to sql server
Chapter 1 introduction to sql serverChapter 1 introduction to sql server
Chapter 1 introduction to sql server
 
Chapter 1 introduction to sql server
Chapter 1 introduction to sql serverChapter 1 introduction to sql server
Chapter 1 introduction to sql server
 
Microsoft holo lens
Microsoft holo lensMicrosoft holo lens
Microsoft holo lens
 
Blue brain
Blue brainBlue brain
Blue brain
 
5g
5g5g
5g
 
Aptitude skills baabtra
Aptitude skills baabtraAptitude skills baabtra
Aptitude skills baabtra
 
Gd baabtra
Gd baabtraGd baabtra
Gd baabtra
 
Baabtra soft skills
Baabtra soft skillsBaabtra soft skills
Baabtra soft skills
 
Cell phone jammer
Cell phone jammerCell phone jammer
Cell phone jammer
 

Recently uploaded

Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 

Recently uploaded (20)

Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 

Php sessions & cookies

  • 3. What you Benefit ??? By the end of this session you will learn ● How to use Sessions and Cookies to maintain the state among multiple requests.
  • 4. TASK OF THE DAY Create a session when a user log in to his account. When user logout from his account the session should expire LOGIN PAGE
  • 5. INTRODUCTION TO PHP SESSIONS AND COOKIES
  • 6. Introduction To PHP Sessions And Cookies We had already tried passing data to a server . But..how the server knows the user from which the requests are received…?
  • 8. Cookies •HTTP is a stateless protocol; this means that the web server does not know (or care) whether two requests comes from the same user or not; it just handles each request without regard to the context in which it happens. •Cookies are used to maintain the state in between requests—even when they occur at large time intervals from each other. •Cookies allow your applications to store a small amount of textual data (typically,4-6kB) on a Web client browser. •There are a number of possible uses for cookies, although their most common one is maintaining state of a user
  • 9. Creating A Cookie • setcookie(“userid", "100", time() + 86400); • This simply sets a cookie variable named “userid” with value “100” and this variable value will be available till next 86400 seconds from current time Cookie variable name variable value Expiration time.
  • 10. Accessing a Cookie • echo $_COOKIE[’userid’]; // prints 100 • Cookie as array – setcookie("test_cookie[0]", "foo"); – setcookie("test_cookie[1]", "bar"); – setcookie("test_cookie[2]", "bar"); – var_dump($_COOKIE[‘test_cookie’]);
  • 11. Destroying A Cookie •There is no special methods to destroy a cookie, We achieve it by setting the cookie time into a past time so that it destroys it – Eg : setcookie(‘userid’,100,time()-100);
  • 13. Sessions •Session serve the same purpose of cookies that is sessions are used to maintain the state in between requests •Session can be started in two ways in PHP – By changing the session.auto_start configuration setting in php.ini – Calling session_start() on the beginning of each pages wherever you use session(Most common way) Note: session_start() must be called before any output is sent to the browser
  • 14. Creating and accessing session • Once session is started you can create and access session variables like any other arrays in PHP – $_SESSION[‘userid’] = 100; – echo $_SESSION[‘userid’]; //prints 100 Session variable name variable value
  • 15. Destroying A Session •There are two methods to destroy a session variable 1. Using unset() function • Eg unset($_SESSION[‘userid’]) 1. Calling session_destroy() method. This will effectively destroy all the session variables. So for deleting only one variable you should go for the previous method • Session_destroy()
  • 17. Step 1 Goto Login_baabtra.php page and set form action to Profile.php page <form name=”login” action=”login_action.php” method=”post”>
  • 18. Step 2 Login_action.php Page Create database connection here mysql_connect('localhost','root',''); mysql_select_db("Baabtra"); $result=mysql_query("select * from tbl_user where vchr_user_name='$username'and vchr_password='$password'");
  • 19. Step 3 Login_action.php Page Check whether id is valid or not.if valid user then create session if(mysql_num_rows($result)){ while($row=mysql_fetch_array($result)){ session_start(); $_SESSION['user_id']=$row['pk_int_user_id']; header(‘Location: profile.php’); } } checks whether there is any resultant
  • 20. Step 3 Login_action.php Page Check whether id is valid or not.if valid user then create session if(mysql_num_rows($result)){ while($row=mysql_fetch_array($result)){ session_start(); $_SESSION['user_id']=$row['pk_int_user_id']; header(‘Location: profile.php’); } } starts a session
  • 21. Step 3 Login_action.php Page Check whether id is valid or not.if valid user then create session if(mysql_num_rows($result)){ while($row=mysql_fetch_array($result)){ session_start(); $_SESSION['user_id']=$row['pk_int_user_id']; header(‘Location: profile.php’); } } sets a session variable userid with value of pk_int_user_id field of the resultant set
  • 22. Step 3 Login_action.php Page Check whether id is valid or not.if valid user then create session if(mysql_num_rows($result)){ while($row=mysql_fetch_array($result)){ session_start(); $_SESSION['user_id']=$row['pk_int_user_id']; header(‘Location: profile.php’); } } sets a session variable userid with value of pk_int_user_id field of the resultant set
  • 23. Step 3 Login_action.php Page Check whether id is valid or not.if valid user then create session if(mysql_num_rows($result)){ while($row=mysql_fetch_array($result)){ session_start(); $_SESSION['user_id']=$row['pk_int_user_id']; header(‘Location: profile.php’); } } sets a session variable userid with value of pk_int_user_id field of the resultant set
  • 24. Step 3 Login_action.php Page Check whether id is valid or not.if valid user then create session if(mysql_num_rows($result)){ while($row=mysql_fetch_array($result)){ session_start(); $_SESSION['user_id']=$row['pk_int_user_id']; header(‘Location: profile.php’); } } header function is used for page redirection
  • 25. Step 4 Design a profile Page and Create a link for Logout
  • 26. Step 5 Go to profile page and display Qualification details of that particular user using session variable.
  • 27. Step 5 Profile.php session_start(); $user_id=$_SESSION['user_id']; mysql_connect('localhost','root',''); mysql_select_db("Baabtra"); $result=mysql_query("select * from tbl_academic_qualificaion where fk_int_user_id='$user_id'"); echo “ qualification name-----college--------percentage--------passout”; while($data=mysql_fetch_assoc($result)){ echo $data['vchr_qualification_name']; echo $data['vchr_qualification_name']; echo $data['int_percentage']; echo $data['dat_passout_date']; }
  • 28. Step 5 Profile.php session_start(); $user_id=$_SESSION['user_id']; mysql_connect('localhost','root',''); mysql_select_db("Baabtra"); $result=mysql_query("select * from tbl_academic_qualificaion where fk_int_user_id='$user_id'"); echo “ qualification name-----college--------percentage--------passout”; while($data=mysql_fetch_assoc($result)){ echo $data['vchr_qualification_name']; echo $data['vchr_qualification_name']; echo $data['int_percentage']; echo $data['dat_passout_date']; } fetches the session variable user_id and stores to variable $userid
  • 29. Step 5 Profile.php session_start(); $user_id=$_SESSION['user_id']; mysql_connect('localhost','root',''); mysql_select_db("Baabtra"); $result=mysql_query("select * from tbl_academic_qualificaion where fk_int_user_id='$user_id'"); echo “ qualification name-----college--------percentage--------passout”; while($data=mysql_fetch_assoc($result)){ echo $data['vchr_qualification_name']; echo $data['vchr_qualification_name']; echo $data['int_percentage']; echo $data['dat_passout_date']; } selects the qualification details of the user that matches with session value
  • 32. Comparison Cookies are stored in the user's browser A cookie can keep information in the user's browser until deleted by user or set as per the timer. It will not be destroyed even if you close the browser. Cookies can only store string We can save cookie for future reference Sessions are stored in server A session is available as long as the browser is opened. User cant disable the session. It will be destroyed if you close the browser Can store not only strings but also objects session cant be. Cookies Session
  • 33. END OF THE SESSION