progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-22 ffffd68cb212f5e233edbc825118a83fd50a3ba2
commit | author | age
ffffd6 1 <?php
F 2     require '../vendor/autoload.php';
3     use Smarty\Smarty;
4     $smarty = new Smarty();
5
6     $smarty->setTemplateDir('../ihtml/smarty/templates');
7     $smarty->setConfigDir('../ihtml/smarty/configs');
8     $smarty->setCompileDir('../ihtml/smarty/templates_c');
9     $smarty->setCacheDir('../ihtml/smarty/cache');
10     
11     $smarty->display('header.tpl');
12     echo "fiat panda";
13 ?>