• POST and GET Methods

      0 comments

    Which will execute faster POST or GET?

    GET transfer data to the server using URL whereas POST transfer data using form collection which is added to the request by the browser. We can send at most 1024 bytes using URL hence there is upper limit for GET method POST method can transfer large amount of data where upper limit is imposed by web server which is about 2MB data is shown to the user in GET method.

    Get is faster but not safe.
    http://www.tutorialspoint.com/php/php_get_post.htm

    Related posts:

    1. Stored procedures, Triggers, Indexes
    2. Out Put Buffer

    Write a comment