SlideShare uma empresa Scribd logo
1 de 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!

Mais conteúdo relacionado

Mais procurados (20)

Session tracking in servlets
Session tracking in servletsSession tracking in servlets
Session tracking in servlets
 
Web Development Course: PHP lecture 1
Web Development Course: PHP lecture 1Web Development Course: PHP lecture 1
Web Development Course: PHP lecture 1
 
Php mysql ppt
Php mysql pptPhp mysql ppt
Php mysql ppt
 
JDBC: java DataBase connectivity
JDBC: java DataBase connectivityJDBC: java DataBase connectivity
JDBC: java DataBase connectivity
 
Java Servlets
Java ServletsJava Servlets
Java Servlets
 
Ajax ppt
Ajax pptAjax ppt
Ajax ppt
 
Servlets
ServletsServlets
Servlets
 
Java Server Pages(jsp)
Java Server Pages(jsp)Java Server Pages(jsp)
Java Server Pages(jsp)
 
Php
PhpPhp
Php
 
PHP variables
PHP  variablesPHP  variables
PHP variables
 
java Cookies
java Cookiesjava Cookies
java Cookies
 
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
 
Form Handling using PHP
Form Handling using PHPForm Handling using PHP
Form Handling using PHP
 
HTTP request and response
HTTP request and responseHTTP request and response
HTTP request and response
 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
 
Ajax Ppt 1
Ajax Ppt 1Ajax Ppt 1
Ajax Ppt 1
 
Php forms
Php formsPhp forms
Php forms
 
Database Connectivity in PHP
Database Connectivity in PHPDatabase Connectivity in PHP
Database Connectivity in PHP
 
Ajax ppt - 32 slides
Ajax ppt - 32 slidesAjax ppt - 32 slides
Ajax ppt - 32 slides
 

Destaque

Destaque (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!
 

Semelhante a 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
 

Semelhante a 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
 
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
 
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)
 
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
 
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
 

Mais de www.netgains.org

Mais de 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
 

Último

EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 

Último (20)

EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 

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.