|
PHP interview questions
Q1:What are the differences between Get and post methods in form
submitting, give the case where we can use get and we can use post methods?
Answers:
GET Method:
Using get method we can able to pass 2K data from HTML
All data we are passing to Server will be displayed on the Browser. This is used
to sent small size data.
POST Method:
1n this method we does not have any size limitation. All data passed to server
will be hidden, User cannot able to see this info on the browser. .The data is
send into a small packets. This used to sent large amount of data.
More>>
|