mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-04 16:20:55 +02:00
16 lines
453 B
PHP
16 lines
453 B
PHP
<?
|
|
|
|
require("Smarty.class.php");
|
|
|
|
$smarty = new Smarty;
|
|
|
|
$smarty->assign("Name","Fred Irving Johnathan Bradley Peppergill");
|
|
$smarty->assign("FirstName",array("John","Mary","James","Henry"));
|
|
$smarty->assign("LastName",array("Doe","Smith","Johnson","Case"));
|
|
$smarty->assign("Class",array(array("A","B","C","D"), array("E", "F", "G", "H"),
|
|
array("I", "J", "K", "L"), array("M", "N", "O", "P")));
|
|
|
|
$smarty->display("./templates/index.tpl");
|
|
|
|
?>
|