You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WF-Website/vue/quote.php

16 lines
567 B

<?php
require_once __DIR__ . '/../vendor/autoload.php';
$loader = new Twig_Loader_Filesystem('templates');
$twig = new Twig_Environment($loader, array( 'cache' => false ));
$value = 'Salva';
echo $twig->render('quote.html', array(
'srcImg' => "../default.jpg",
'nameCarac' => "default",
'quoteContent' => "je test la page",
'sourceName' => "une source",
'dateSortie' => "1999",
'nbLike' => "0"
));
?>