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

$Smarty = new MySmarty();
$Smarty->assign('title',"日付ラジオボックス作成");
$Smarty->display('section4.tpl');
?>