Answered Questions

  • PHP Session

    Where does the session stored, either client side or server side?

    PRASHANT PRAKASH WADIKAR

    • Mar 8th, 2018

    Session stored on server side

    sagar

    • Jan 6th, 2018

    Session stored on server side and cookies stored on client side.
    session start using session_start(); method and destroy using session_destroy(); method

  • PHP header function

    use of header() function in php

    sandeshk

    • May 15th, 2009

    The header() function sends a raw HTTP header to a client.We can use herder() function for redirection of pages. It is important to notice that header() must be called before any actual output is seen.