1. Go to this page and download the library: Download xamin/handlebars.php 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/ */
xamin / handlebars.php example snippets
// uncomment the following two lines, if you don't use composer
// e = new Handlebars;
echo $engine->render(
'Planets:<br />{{#each planets}}<h6>{{this}}</h6>{{/each}}',
array(
'planets' => array(
"Mercury",
"Venus",
"Earth",
"Mars"
)
)
);