SlideShare a Scribd company logo
1 of 24
Cookies and Sessions in PHP
Why Cookies and Sessions are Used?

   HTTP is a stateless protocol. This means that each request is handled
    independently of all the other requests and it means that a server or a
    script cannot remember if a user has been there before.
   However, knowing if a user has been there before is often required and
    therefore something known as cookies and sessions have been
    implemented.
What is a Cookie?

   A cookie is a piece of text that a Web server can store on a user's hard
    disk.
   A cookie is a variable, sent by the server to the browser.
   Cookies allow a Web site to store information on a user's machine and
    later retrieve it. The pieces of information are stored as name-value pairs.
What is a Cookie?
   Each cookie on the user’s computer is connected to a particular domain.
   Each time the same computer requests a page with a browser, it will send
    the cookie too.
   Each cookie can store up to 4kB of data.
   A maximum of 20 cookies can be stored on a user’s PC per domain.
When are Cookies Created?
   When a new webpage is loaded - for example after a 'submit' button is
    pressed the data handling page would be responsible for storing the
    values in a cookie.
   If the user has elected to disable cookies then the write operation will
    fail, and subsequent sites which rely on the cookie will either have to
    take a default action.
Example (1)
1.   User sends a request for page at www.example.com for the first time.




                                page request
Example (2)
2.   Server sends back the page html to the browser AND stores some data in
      a cookie on the user’s PC.




                           html


                           cookie data
Example (1)
3.   At the next page request for domain www.example.com, all cookie data
      associated with this domain is sent too.




                               page request


                                 cookie data
What's in a Cookie?
   Each cookie is effectively a small lookup table containing pairs of (key,
    data) values - for example (firstname, John) (lastname,Peter).
    Once the cookie has been read by the code on the server or client
    computer, the data can be retrieved and used to customise the web page
    appropriately.
Set a cookie
setcookie(name [,value [,expire [,path [,domain [,secure]]]]])

name = cookie name
value = data to store (string)
expire = UNIX timestamp when the cookie expires. Default is that cookie
   expires when browser is closed.
path = Path on the server within and below which the cookie is available on.
domain = Domain at which the cookie is available for.
secure = If cookie should be sent over HTTPS connection only. Default false.
Set a cookie - examples
setcookie(‘name’,’Robert’)

  This command will set the cookie called name on the user’s PC containing
  the data Robert. It will be available to all pages in the same directory or
  subdirectory of the page that set it (the default path and domain). It will
  expire and be deleted when the browser is closed (default expire).
Set a cookie - examples
setcookie(‘age’,’20’,time()+60*60*24*30)


  This command will set the cookie called age on the user’s PC containing
  the data 20. It will be available to all pages in the same directory or
  subdirectory of the page that set it (the default path and domain). It will
  expire and be deleted after 30 days.
Set a cookie - examples
setcookie(‘gender’,’male’,0,’/’)


   This command will set the cookie called gender on the user’s PC containing
   the data male. It will be available within the entire domain that set it. It
   will expire and be deleted when the browser is closed.
Read cookie data

   All cookie data is available through the superglobal
    $_COOKIE:
    $variable = $_COOKIE[‘cookie_name’]

    or
    $variable = $HTTP_COOKIE_VARS[‘cookie_name’];

    e.g.
    $age = $_COOKIE[‘age’]
Delete a cookie
   To remove a cookie, simply overwrite the cookie with a new one with an
    expiry time in the past…

    setcookie(‘cookie_name’,’’,time()-6000)

   Note that theoretically any number taken away from the time() function
    should do, but due to variations in local computer times, it is advisable to
    use a day or two.
Problems with Cookies
   Browsers can refuse to accept cookies.
   Additionally, it adds network overhead to
    send lots of information back and forth.
   There are also limits to the amount of
    information that can be sent
   Some information you just don’t want to save on the client’s computer.
Sessions

   A Session allows to store user information on the server for later use (i.e.
    username, shopping cart items, etc).
   However, this session information is temporary and is usually deleted very
    quickly after the user has left the website that uses sessions.
   Session variables hold information about one single user, and are available
    to all pages in one application.
How Session Works?
   Sessions work by creating a unique identification(UID) number for each
    visitor and storing variables based on this ID.
   This helps to prevent two users data from getting confused with one
    another when visiting the same webpage.
   The UID is either stored in a cookie or is propagated in the URL.
Starting a PHP Session

   Before you can store user information in your PHP
    session, you must first start up the session.
   The session_start() function must appear BEFORE
    the <html> tag.
   <?php session_start(); ?>
    <html>
    <body>

    </body>
    </html>
Storing a Session Variable
   The correct way to store and retrieve session variables is to use the PHP
    $_SESSION variable.
   <?php
    session_start();
    // store session data
    $_SESSION['views']=1;
    ?>
    <html>
    <body

    </body>
    </html>
Retrieving a Session Variable

   <html>
    <body>

    <?php
    //retrieve session data
    echo "Pageviews=". $_SESSION['views'];
    ?>
    </body>
    </html>
   Display:
               Pageviews = 1
Destroying a Session
   The unset() function is used to free the specified session variable.
   <?php
    unset($_SESSION['views']);
    ?>
   You can also completely destroy the session by calling the
    session_destroy() function:
   <?php
    session_destroy();
    ?>
   session_destroy() will reset your session and you will lose all your stored
    session data.
Cookies vs. Sessions

               Cookies                                Sessions

                                           Sessions are stored on server
   Cookies are stored on client side       side
   Cookies can only store strings.        Sessions can store objects.
   Cookies can be set to a long           When users close their browser,
    lifespan.                               they also lost the session.
Thanks!

More Related Content

What's hot (20)

Servlet and servlet life cycle
Servlet and servlet life cycleServlet and servlet life cycle
Servlet and servlet life cycle
 
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
 
virtual hosting and configuration
virtual hosting and configurationvirtual hosting and configuration
virtual hosting and configuration
 
JavaScript - Chapter 11 - Events
 JavaScript - Chapter 11 - Events  JavaScript - Chapter 11 - Events
JavaScript - Chapter 11 - Events
 
Introduction to php
Introduction to phpIntroduction to php
Introduction to php
 
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
 
Internet cookies
Internet cookiesInternet cookies
Internet cookies
 
Cookie
CookieCookie
Cookie
 
Responsive web designing ppt(1)
Responsive web designing ppt(1)Responsive web designing ppt(1)
Responsive web designing ppt(1)
 
Php mysql ppt
Php mysql pptPhp mysql ppt
Php mysql ppt
 
Java Networking
Java NetworkingJava Networking
Java Networking
 
Jquery
JqueryJquery
Jquery
 
Presentation of bootstrap
Presentation of bootstrapPresentation of bootstrap
Presentation of bootstrap
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
 
jQuery PPT
jQuery PPTjQuery PPT
jQuery PPT
 
Cookie & Session In ASP.NET
Cookie & Session In ASP.NETCookie & Session In ASP.NET
Cookie & Session In ASP.NET
 
SQL INJECTION
SQL INJECTIONSQL INJECTION
SQL INJECTION
 
JavaScript - Chapter 15 - Debugging Techniques
 JavaScript - Chapter 15 - Debugging Techniques JavaScript - Chapter 15 - Debugging Techniques
JavaScript - Chapter 15 - Debugging Techniques
 
Angular Directives
Angular DirectivesAngular Directives
Angular Directives
 
Php array
Php arrayPhp array
Php array
 

Viewers also liked

Viewers also liked (7)

Web Cookies
Web CookiesWeb Cookies
Web Cookies
 
Hypertext
HypertextHypertext
Hypertext
 
Presentation on Internet Cookies
Presentation on Internet CookiesPresentation on Internet Cookies
Presentation on Internet Cookies
 
Hypertext, hypermedia and multimedia
Hypertext, hypermedia and multimediaHypertext, hypermedia and multimedia
Hypertext, hypermedia and multimedia
 
Javascript
JavascriptJavascript
Javascript
 
Cookies PowerPoint
Cookies PowerPointCookies PowerPoint
Cookies PowerPoint
 
Cookies!
Cookies!Cookies!
Cookies!
 

Similar to Sessions and cookies

PHP-Cookies-Sessions.pdf
PHP-Cookies-Sessions.pdfPHP-Cookies-Sessions.pdf
PHP-Cookies-Sessions.pdfHumphreyOwuor1
 
Php ssession - cookies -introduction
Php ssession - cookies -introductionPhp ssession - cookies -introduction
Php ssession - cookies -introductionProgrammer Blog
 
Web app development_cookies_sessions_14
Web app development_cookies_sessions_14Web app development_cookies_sessions_14
Web app development_cookies_sessions_14Hassen Poreya
 
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
 
javaScriptCookies.pptx
javaScriptCookies.pptxjavaScriptCookies.pptx
javaScriptCookies.pptxMattMarino13
 
19_JavaScript - Storage_Cookies-tutorial .pptx
19_JavaScript - Storage_Cookies-tutorial .pptx19_JavaScript - Storage_Cookies-tutorial .pptx
19_JavaScript - Storage_Cookies-tutorial .pptxssuser4a97d3
 
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
 
PHP COOKIES AND SESSIONS
PHP COOKIES AND SESSIONSPHP COOKIES AND SESSIONS
PHP COOKIES AND SESSIONSDegu8
 
Ch4(saving state with cookies and query strings)
Ch4(saving state with cookies and query strings)Ch4(saving state with cookies and query strings)
Ch4(saving state with cookies and query strings)Chhom Karath
 
Cookies and sessions
Cookies and sessionsCookies and sessions
Cookies and sessionssalissal
 
lecture 12.pptx
lecture 12.pptxlecture 12.pptx
lecture 12.pptxITNet
 
Cookies and Session
Cookies and SessionCookies and Session
Cookies and SessionKoraStats
 
PHP - Getting good with cookies
PHP - Getting good with cookiesPHP - Getting good with cookies
PHP - Getting good with cookiesFirdaus Adib
 

Similar to Sessions and cookies (20)

PHP-Cookies-Sessions.pdf
PHP-Cookies-Sessions.pdfPHP-Cookies-Sessions.pdf
PHP-Cookies-Sessions.pdf
 
Php ssession - cookies -introduction
Php ssession - cookies -introductionPhp ssession - cookies -introduction
Php ssession - cookies -introduction
 
Web app development_cookies_sessions_14
Web app development_cookies_sessions_14Web app development_cookies_sessions_14
Web app development_cookies_sessions_14
 
4.4 PHP Session
4.4 PHP Session4.4 PHP Session
4.4 PHP Session
 
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
 
javaScriptCookies.pptx
javaScriptCookies.pptxjavaScriptCookies.pptx
javaScriptCookies.pptx
 
19_JavaScript - Storage_Cookies-tutorial .pptx
19_JavaScript - Storage_Cookies-tutorial .pptx19_JavaScript - Storage_Cookies-tutorial .pptx
19_JavaScript - Storage_Cookies-tutorial .pptx
 
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
 
PHP COOKIES AND SESSIONS
PHP COOKIES AND SESSIONSPHP COOKIES AND SESSIONS
PHP COOKIES AND SESSIONS
 
Session,cookies
Session,cookiesSession,cookies
Session,cookies
 
Cookies
CookiesCookies
Cookies
 
Manish
ManishManish
Manish
 
Ch4(saving state with cookies and query strings)
Ch4(saving state with cookies and query strings)Ch4(saving state with cookies and query strings)
Ch4(saving state with cookies and query strings)
 
Cookies and sessions
Cookies and sessionsCookies and sessions
Cookies and sessions
 
Sessions n cookies
Sessions n cookiesSessions n cookies
Sessions n cookies
 
lecture 12.pptx
lecture 12.pptxlecture 12.pptx
lecture 12.pptx
 
Cookies-PHP
Cookies-PHPCookies-PHP
Cookies-PHP
 
Cookies and Session
Cookies and SessionCookies and Session
Cookies and Session
 
Php session
Php sessionPhp session
Php session
 
PHP - Getting good with cookies
PHP - Getting good with cookiesPHP - Getting good with cookies
PHP - Getting good with cookies
 

More from www.netgains.org

More from www.netgains.org (8)

Exploring iTools
Exploring iToolsExploring iTools
Exploring iTools
 
What is a Responsive Website
What is a Responsive WebsiteWhat is a Responsive Website
What is a Responsive Website
 
Twitter bootstrap1
Twitter bootstrap1Twitter bootstrap1
Twitter bootstrap1
 
Magento
MagentoMagento
Magento
 
Dream weaver
Dream weaverDream weaver
Dream weaver
 
Introduction to wordpress & theme implementation
Introduction to wordpress & theme implementationIntroduction to wordpress & theme implementation
Introduction to wordpress & theme implementation
 
Web application security
Web application securityWeb application security
Web application security
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
 

Recently uploaded

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 

Recently uploaded (20)

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 

Sessions and cookies

  • 2. Why Cookies and Sessions are Used?  HTTP is a stateless protocol. This means that each request is handled independently of all the other requests and it means that a server or a script cannot remember if a user has been there before.  However, knowing if a user has been there before is often required and therefore something known as cookies and sessions have been implemented.
  • 3. What is a Cookie?  A cookie is a piece of text that a Web server can store on a user's hard disk.  A cookie is a variable, sent by the server to the browser.  Cookies allow a Web site to store information on a user's machine and later retrieve it. The pieces of information are stored as name-value pairs.
  • 4. What is a Cookie?  Each cookie on the user’s computer is connected to a particular domain.  Each time the same computer requests a page with a browser, it will send the cookie too.  Each cookie can store up to 4kB of data.  A maximum of 20 cookies can be stored on a user’s PC per domain.
  • 5. When are Cookies Created?  When a new webpage is loaded - for example after a 'submit' button is pressed the data handling page would be responsible for storing the values in a cookie.  If the user has elected to disable cookies then the write operation will fail, and subsequent sites which rely on the cookie will either have to take a default action.
  • 6. Example (1) 1. User sends a request for page at www.example.com for the first time. page request
  • 7. Example (2) 2. Server sends back the page html to the browser AND stores some data in a cookie on the user’s PC. html cookie data
  • 8. Example (1) 3. At the next page request for domain www.example.com, all cookie data associated with this domain is sent too. page request cookie data
  • 9. What's in a Cookie?  Each cookie is effectively a small lookup table containing pairs of (key, data) values - for example (firstname, John) (lastname,Peter).  Once the cookie has been read by the code on the server or client computer, the data can be retrieved and used to customise the web page appropriately.
  • 10. Set a cookie setcookie(name [,value [,expire [,path [,domain [,secure]]]]]) name = cookie name value = data to store (string) expire = UNIX timestamp when the cookie expires. Default is that cookie expires when browser is closed. path = Path on the server within and below which the cookie is available on. domain = Domain at which the cookie is available for. secure = If cookie should be sent over HTTPS connection only. Default false.
  • 11. Set a cookie - examples setcookie(‘name’,’Robert’) This command will set the cookie called name on the user’s PC containing the data Robert. It will be available to all pages in the same directory or subdirectory of the page that set it (the default path and domain). It will expire and be deleted when the browser is closed (default expire).
  • 12. Set a cookie - examples setcookie(‘age’,’20’,time()+60*60*24*30) This command will set the cookie called age on the user’s PC containing the data 20. It will be available to all pages in the same directory or subdirectory of the page that set it (the default path and domain). It will expire and be deleted after 30 days.
  • 13. Set a cookie - examples setcookie(‘gender’,’male’,0,’/’) This command will set the cookie called gender on the user’s PC containing the data male. It will be available within the entire domain that set it. It will expire and be deleted when the browser is closed.
  • 14. Read cookie data  All cookie data is available through the superglobal $_COOKIE: $variable = $_COOKIE[‘cookie_name’] or $variable = $HTTP_COOKIE_VARS[‘cookie_name’]; e.g. $age = $_COOKIE[‘age’]
  • 15. Delete a cookie  To remove a cookie, simply overwrite the cookie with a new one with an expiry time in the past… setcookie(‘cookie_name’,’’,time()-6000)  Note that theoretically any number taken away from the time() function should do, but due to variations in local computer times, it is advisable to use a day or two.
  • 16. Problems with Cookies  Browsers can refuse to accept cookies.  Additionally, it adds network overhead to send lots of information back and forth.  There are also limits to the amount of information that can be sent  Some information you just don’t want to save on the client’s computer.
  • 17. Sessions  A Session allows to store user information on the server for later use (i.e. username, shopping cart items, etc).  However, this session information is temporary and is usually deleted very quickly after the user has left the website that uses sessions.  Session variables hold information about one single user, and are available to all pages in one application.
  • 18. How Session Works?  Sessions work by creating a unique identification(UID) number for each visitor and storing variables based on this ID.  This helps to prevent two users data from getting confused with one another when visiting the same webpage.  The UID is either stored in a cookie or is propagated in the URL.
  • 19. Starting a PHP Session  Before you can store user information in your PHP session, you must first start up the session.  The session_start() function must appear BEFORE the <html> tag.  <?php session_start(); ?> <html> <body> </body> </html>
  • 20. Storing a Session Variable  The correct way to store and retrieve session variables is to use the PHP $_SESSION variable.  <?php session_start(); // store session data $_SESSION['views']=1; ?> <html> <body </body> </html>
  • 21. Retrieving a Session Variable  <html> <body> <?php //retrieve session data echo "Pageviews=". $_SESSION['views']; ?> </body> </html>  Display: Pageviews = 1
  • 22. Destroying a Session  The unset() function is used to free the specified session variable.  <?php unset($_SESSION['views']); ?>  You can also completely destroy the session by calling the session_destroy() function:  <?php session_destroy(); ?>  session_destroy() will reset your session and you will lose all your stored session data.
  • 23. Cookies vs. Sessions Cookies Sessions  Sessions are stored on server  Cookies are stored on client side side  Cookies can only store strings.  Sessions can store objects.  Cookies can be set to a long  When users close their browser, lifespan. they also lost the session.