+ 2
How we can understand get and post method in php with example?
For a basic
3 Respuestas
+ 7
This lesson explained this very well with an example have you gone through it if you face any difficulty then mention me I will help you to understand the concept
https://www.sololearn.com/learn/PHP/1841/?ref=app
+ 4
Mithlesh @ry@
The POST method transfers information via HTTP headers. The information is encoded as described in case of GET method and put into a header called QUERY_STRING. The POST method does not have any restriction on data size to be sent. The POST method can be used to send ASCII as well as binary data.
source: https://www.tutorialspoint.com/php/php_get_post.htm
I hope I was helpful
+ 4
Some sololearn tutorial explaining REST API
https://www.sololearn.com/learn/10453/?ref=app
https://www.sololearn.com/learn/10457/?ref=app