progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-22 cba756217b4454eab09d4a06db78a3db2f07b8b7
creazione pagina tipo.php (per la fiat tipo) e configurazione smarty per template
1 files added
13 ■■■■■ changed files
htdocs/tipo.php 13 ●●●●● patch | view | raw | blame | history
htdocs/tipo.php
New file
@@ -0,0 +1,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 tipo";
?>