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