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