Merge remote-tracking (subtree) branch 'PracticingPhp/master'

This commit is contained in:
Dan Buch
2012-03-03 20:18:34 -05:00
905 changed files with 218528 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
require_once("libs/Smarty.class.php");
$smarty = new Smarty();
$smarty->assign("title", "smarty!");
$smarty->assign("bgcolor", "#aef");
$smarty->template_dir = "templates";
$smarty->display("test.tpl");
?>