Difference between get() and post() method in PHP
Closed
debasis_1975
Tabeer
- Posts
- 1
- Registration date
- Monday February 1, 2016
- Status
- Member
- Last seen
- February 1, 2016
Tabeer
- Posts
- 63
- Registration date
- Thursday December 3, 2015
- Status
- Member
- Last seen
- December 26, 2016
Related:
- Difference between get() and post() method in PHP
- Undefined index php post - Guide
- Difference between instagram stories and posts - Guide
- Why can't i see comments on my own instagram post - Forum - Instagram
- How to change netflix payment method - Guide
- Https //m.facebook.com/home.php soft=bookmarks log out ✓ - Forum - Facebook
1 reply
BunoCS
Feb 1, 2016 at 10:18 AM
- Posts
- 15277
- Registration date
- Monday July 11, 2005
- Status
- Moderator
- Last seen
- July 26, 2022
Feb 1, 2016 at 10:18 AM
Hello,
There are no
Do you mean GET and POST HTTP request?
http://www.tutorialspoint.com/php/php_get_post.htm
There are no
get()or
post()method in PHP.
Do you mean GET and POST HTTP request?
http://www.tutorialspoint.com/php/php_get_post.htm
Feb 2, 2016 at 02:58 PM
Parameters remain in browser history because they are part of the URL
Can be bookmarked.
GET method should not be used when sending passwords or other sensitive information.
7607 character maximum size.
Url example: page2.php?category=sport
POST()
Parameters are not saved in browser history.
Can not be bookmarked.
POST method used when sending passwords or other sensitive information.
8 Mb max size for the POST method.