PHP code example of chahal26 / php-simple-router

1. Go to this page and download the library: Download chahal26/php-simple-router 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/ */

    

chahal26 / php-simple-router example snippets


      use Chahal26\PhpSimpleRouter\Router;

    /* Creating Route Instance */
    $router = new Router();

    /* Defining Routes */


    /* Execute Routes */
    $router->run();

$router->get('route', function() { /* ... */ });
$router->post('route', function() { /* ... */ });

    $router->get('/about', '\App\Controllers\PagesController@about');

    $router->setNamespace('\App\Controllers');
    $router->get('/about', 'PagesController@about');

    $router->get('/', function(){
        echo "<h1>Welcome To Home Page</h1>";
    });

    $router->get('/contact', function(){
        echo "<h1>Welcome To Contact Page</h1>";
    });