progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-23 bf3e5bfd8a67c024af213e95d7b7ada7dd1b3ef7
1
2
3
4
5
6
7
8
9
10
11
<?php
    require '../vendor/autoload.php';
    use Smarty\Smarty;
    $smarty = new Smarty();
 
    $smarty->setTemplateDir('../ihtml');
    $smarty->setCompileDir('../compile');
    
    $smarty->display('header.tpl');
    echo "fiat 500";
?>