progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-22 ffffd68cb212f5e233edbc825118a83fd50a3ba2
creazione pagina panda.php e 500.php (per la fiat panda e fiat 500) e configurazione smarty per template
2 files added
26 ■■■■■ changed files
htdocs/500.php 13 ●●●●● patch | view | raw | blame | history
htdocs/panda.php 13 ●●●●● patch | view | raw | blame | history
htdocs/500.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 500";
?>
htdocs/panda.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 panda";
?>