What is the difference between GET and POST?
Answered
i did not understant GET and POST in PHP
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.