Skip to content

Instantly share code, notes, and snippets.

@freyandhy
Last active February 12, 2017 16:02
Show Gist options
  • Save freyandhy/6d77c993f5eaa161ce4892137524d975 to your computer and use it in GitHub Desktop.
Save freyandhy/6d77c993f5eaa161ce4892137524d975 to your computer and use it in GitHub Desktop.
<?php
require 'vendor/autoload.php';
$loader = new Twig_Loader_Filesystem('views');
$twig = new Twig_Environment($loader);
echo $twig->render('latihan.html', array(
'name' => 'Frey',
'city' => 'Samarinda'
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment