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