I have a PUT request from frontend side. I use F3 framework on backend side and want to parse params from query. How can I do that? GET, POST requests work fine.
$f3->get('GET'); //works
$f3->get('POST'); //works
$f3->get('PUT'); //does not work
I found a solution with using REQBODY as a param, but it does not work. Any ideas?
PUT comes in BODY as raw