progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-22 d11c591a4c5660223baaaa1da415c46ee8a755e2
commit | author | age
e89407 1 <?php
f0fc43 2
F 3 require '../vendor/autoload.php';
4 use Smarty\Smarty;
5 $smarty = new Smarty();
6
b6f7bc 7 $smarty->setTemplateDir('../ihtml/smarty/templates');
F 8 $smarty->setConfigDir('../ihtml/smarty/configs');
9 $smarty->setCompileDir('../ihtml/smarty/templates_c');
10 $smarty->setCacheDir('../ihtml/smarty/cache');
f0fc43 11
c6c379 12 $smarty->display('header.tpl');
F 13 echo 'index';
f0fc43 14
F 15
16
17
18
19
20
e89407 21 ?>