I need to make a PATCH request to a PHP application.
PATCH
How can I get the data from that PATCH request inside that application?
If I h
You have $_REQUEST superglobal containing all data we can get regardless the HTTP method used (GET, POST, PATCH, PUT)
$_REQUEST
GET
POST
PUT