<?php
/*
 * Kompendium der Web-Programmierung
 * 
 * die Smarty Template-Engine
 * 
 * Schleifen in Smarty
 */
 
 
require 'Smarty.class.php';

$smarty = new Smarty;
$smarty->template_dir="D:\\www\\webkompendium\\smarty\\smartytemplates";

$myArray = array(42,313,4711,"WebKompendium");

$smarty->assign("anArray", $myArray);

$smarty->display('schleifen.tpl');
 
?>