PHP code example of met_mw / sbreadcrumbs

1. Go to this page and download the library: Download met_mw/sbreadcrumbs 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/ */

    

met_mw / sbreadcrumbs example snippets


$breadcrumbs = new Breadcrumbs();
$breadcrumbs->addBreadcrumb('First page', '?page=1')
    ->addBreadcrumb('Second page', '?page=2')
    ->addBreadcrumb('Third page')
    ->render();