POST

Use the Slim application’s post() method to map a callback function to a resource URI that is requested withthe HTTP POST method.

  1. <?php
  2. $app = new \Slim\Slim();
  3. $app->post('/books', function () {
  4. //Create book
  5. });

In this example, an HTTP POST request for “/books” will invoke the associated callback function

The first argument of the Slim application’s post() method is the resource URI. The last argument is anything thatreturns true for is_callable(). Typically, the last argument will be an anonymous function.