What is the difference between GET and POST?

i did  not understant  GET  and POST in PHP

Add Comment



  • 1 Answer(s)
    Best answer

    there is two types of method to get form data ,GET and POST.GET method are default method ,this method are used to a search engine ,this method is not secure method ,because all the different user can easily see inputted data.

    on the other hand, POST method is a secure method which is mainly used to save user data for future uses ,POST method is use in the login and sign up session.

    Default Answered on 28/04/2018.
    Add Comment



  • Your Answer

    By posting your answer, you agree to the privacy policy and terms of service.