Last active
February 12, 2017 16:02
-
-
Save freyandhy/6d77c993f5eaa161ce4892137524d975 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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