PHP code example of aalfiann / slim-skeleton
1. Go to this page and download the library: Download aalfiann/slim-skeleton library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
aalfiann / slim-skeleton example snippets
use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;
// load contact page
$app->get('/contact', function (Request $request, Response $response) {
$body = $response->getBody();
return $this->view->render($response, "contact.twig", []);
})->setName("/contact")->add($container->get('csrf'));
// send message
$app->post('/contact', function (Request $request, Response $response) {
$body = $response->getBody();
return $this->view->render($response, "contact.twig", []);
})->add($container->get('csrf'));