Difference between GET & POST method in PHP ?
GET & POST method is same but the main different is how they work. Basically GET method is use for search like google search engine and POST method is use in form submission. In GET method parameter passed in url ( http format), from url GET fetch the data. Another side POST method fetch the […]
Continue Reading