progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-05-03 22c81cf3ea881e1c8bb0c6d3f95590fdfea6e906
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('panda.tpl');
    echo "fiat panda";
?>