progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-22 c6c37911c50adf560df60e482f356c24f8e69b61
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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 "fiat 500";
?>