<?php
error_reporting(E_ALL);
require_once './class/MySmarty.class.php';  // MySmarty classを読込む
$Smarty = new MySmarty();

$Smarty->assign('array_data',range('a','z'));
$Smarty->assign('title',"{section}で使用できる変数の動き");
$Smarty->display('section1.tpl');
?>