PHP code example of cobisja / boothelp

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

    

cobisja / boothelp example snippets


    
        

    
        {BootHelp root folder}/src/Helpers/Html/Html.php';
               BootHelp root folder}/src/Helpers/Vertical.php';
         '{BootHelp root folder}/src/Button.php';
        ire '{BootHelp root folder}/src/Modal.php';
        


...
$modal = new BootHelp\Modal('Hello world');
...


...
use BootHelp\Modal;
...

$modal = new Modal('Hello world)';
...


use BootHelp\BootHelp;
...
$modal = BootHelp::modal('How easy is to use BootHelp!!!');
echo $modal;
...


use BootHelp\Modal;
...
$modal = new Modal('How easy is to use BootHelp!!!');
echo $modal;

    curl -s https://getcomposer.org/installer | php
	

    php composer.phar dump-autoload