Posts by Leandro Alberti • 46 points
1 post
-
3
votes1
answer47
viewsA: GET STR syntax
To take the body of a request with php you can use file_get_contents() $corpo = file_get_contents('php://input'); if the JSON body is used json_decode(): $json = json_decode($corpo); then you can…