Files
smarty/index.php

23 lines
574 B
PHP
Raw Normal View History

2000-11-15 17:11:52 +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
2001-01-24 17:16:32 +00:00
$smarty->assign("Contacts",array(
"phone" => "555-4444",
"fax" => "555-3333",
"cell" => "760-1234"
));
2000-11-20 20:06:06 +00:00
$smarty->display("./templates/index.tpl");
2000-11-15 17:11:52 +00:00
?>