if (isset($_POST['textcontent'])){
$text=$_POST['contetnt'];
}
$arr = array(
'Имя: ' =>$name,
'Номер телефон: ' =>$phone,
'Комментарий:' =>$callback_comment,
); $ composer require twig/twigrequire 'vendor/autoload.php';
$loader = new \Twig\Loader\FilesystemLoader('/app/views');
$twig = new \Twig\Environment($loader, [
'cache' => '/storage/cache/twig',
'auto_reload' => true,
'debug' => true,
]);
echo $twig->render('index.html', ['name' => 'Вася']);<p>Привет, {{ name }}</p>