Files
smarty/index.php

18 lines
433 B
PHP
Raw Normal View History

2000-11-15 17:11:52 +00:00
<?
require("Smarty.class.php");
$smarty = new Smarty;
$smarty->assign("Name","Fred");
$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 03:20:55 +00:00
$smarty->quip("./templates/index.tpl");
2000-11-15 17:11:52 +00:00
2000-11-19 18:57:06 +00:00
print "\ndone\n";
2000-11-15 17:11:52 +00:00
?>