Files
smarty/index.php

16 lines
455 B
PHP
Raw Normal View History

2000-11-15 17:11:52 +00:00
<?
2001-01-02 14:51:02 +00:00
require("./Smarty.class.php");
2000-11-15 17:11:52 +00:00
$smarty = new Smarty;
2000-11-20 22:31:38 +00:00
$smarty->assign("Name","Fred Irving Johnathan Bradley Peppergill");
2000-11-15 17:11:52 +00:00
$smarty->assign("FirstName",array("John","Mary","James","Henry"));
$smarty->assign("LastName",array("Doe","Smith","Johnson","Case"));
2000-11-19 18:57:06 +00:00
$smarty->assign("Class",array(array("A","B","C","D"), array("E", "F", "G", "H"),
array("I", "J", "K", "L"), array("M", "N", "O", "P")));
2000-11-15 17:11:52 +00:00
2000-11-20 20:06:06 +00:00
$smarty->display("./templates/index.tpl");
2000-11-15 17:11:52 +00:00
?>