I'm in the midst of writing a RESTful API, but sadly PHP doesn't have much built-in support for the PUT method.
Does anyone know of a script/library that would parse multipart/form-data in PHP?
I'm in the midst of writing a RESTful API, but sadly PHP doesn't have much built-in support for the PUT method.
Does anyone know of a script/library that would parse multipart/form-data in PHP?
You can use parse_str(file_get_contents("php://input"), $vars) to access PUT data