Files
LesRecettesDePapis/views/home.php

14 lines
451 B
PHP
Raw Normal View History

<h1>Coucou</h1>
2026-04-02 16:33:32 +02:00
<?php $str = "Markdown **text**\n# SOLONG\n*text*."; $md = \App\Helpers\Markdown::convertToHTML( $str ); echo "<p>$md</p>"; ?>
2026-04-02 18:10:47 +02:00
<?php
/*
$ing = new \App\Domain\Ingredients\Ingredient();
$ing->num_ingredient = 0;
$ing->nom_ingredient = "coucou";
new \App\Domain\Ingredients\IngredientRepository()->add($ing);
*/
2026-04-02 16:33:32 +02:00
2026-04-03 10:43:55 +02:00
var_dump( new \App\Domain\Recettes\RecetteRepository()->advancedRecetteSearch( "", [ 4 ], [] ) );
2026-04-02 16:33:32 +02:00
?>