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

Php tutorial(w3schools)
Php tutorial(w3schools)Php tutorial(w3schools)
Php tutorial(w3schools)
Arjun Shanka
 

What's hot (20)

Php session
Php sessionPhp session
Php session
 
Java servlet life cycle - methods ppt
Java servlet life cycle - methods pptJava servlet life cycle - methods ppt
Java servlet life cycle - methods ppt
 
Sessions and cookies
Sessions and cookiesSessions and cookies
Sessions and cookies
 
Cookies & Session
Cookies & SessionCookies & Session
Cookies & Session
 
Php mysql ppt
Php mysql pptPhp mysql ppt
Php mysql ppt
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
 
Javascript dom event
Javascript dom eventJavascript dom event
Javascript dom event
 
Java Servlets
Java ServletsJava Servlets
Java Servlets
 
Cookie and session
Cookie and sessionCookie and session
Cookie and session
 
Php and MySQL
Php and MySQLPhp and MySQL
Php and MySQL
 
Php
PhpPhp
Php
 
Php Presentation
Php PresentationPhp Presentation
Php Presentation
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state management
 
Asp.net.
Asp.net.Asp.net.
Asp.net.
 
JQuery introduction
JQuery introductionJQuery introduction
JQuery introduction
 
Java Basics
Java BasicsJava Basics
Java Basics
 
PHP - Introduction to PHP AJAX
PHP -  Introduction to PHP AJAXPHP -  Introduction to PHP AJAX
PHP - Introduction to PHP AJAX
 
Php tutorial(w3schools)
Php tutorial(w3schools)Php tutorial(w3schools)
Php tutorial(w3schools)
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
 
Php database connectivity
Php database connectivityPhp database connectivity
Php database connectivity
 

Viewers also liked

Cookies PowerPoint
Cookies PowerPointCookies PowerPoint
Cookies PowerPoint
emurfield
 
Web Cookies
Web CookiesWeb Cookies
Web Cookies
apwebco
 
Mountains of Pakistan any physiography
Mountains of Pakistan any physiography Mountains of Pakistan any physiography
Mountains of Pakistan any physiography
GCUF
 
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
sarankumar4445
 

Viewers also liked (14)

Cookies and sessions
Cookies and sessionsCookies and sessions
Cookies and sessions
 
Php ssession - cookies -introduction
Php ssession - cookies -introductionPhp ssession - cookies -introduction
Php ssession - cookies -introduction
 
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

Session Management & Cookies In Php
Session Management & Cookies In PhpSession Management & Cookies In Php
Session Management & Cookies In Php
Harit Kothari
 
Authentication
AuthenticationAuthentication
Authentication
soon
 
Creating a Simple PHP and MySQL-Based Login System
Creating a Simple PHP and MySQL-Based Login SystemCreating a Simple PHP and MySQL-Based Login System
Creating a Simple PHP and MySQL-Based Login System
Azharul Haque Shohan
 

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
 
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
 
State management in ASP.NET
State management in ASP.NETState management in ASP.NET
State management in ASP.NET
 
Creating a Simple PHP and MySQL-Based Login System
Creating a Simple PHP and MySQL-Based Login SystemCreating a Simple PHP and MySQL-Based Login System
Creating a Simple PHP and MySQL-Based Login System
 

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

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
SanaAli374401
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Recently uploaded (20)

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 

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()
  • 16. Let’s try implementing with our task
  • 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