Answered Questions

  • POST and GET Methods

    Which will execute faster POST or GET? Explain

    Abinash Kumar

    • Jun 20th, 2017

    Both will execute faster its just that the difference in method. Post does not throws value or information in the address bar but get does.

    charujain

    • Sep 15th, 2015

    GET method can send only 1024 bytes of information and POST method have no limit.

  • 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