Files
anpdf/app/routes/generation.php

12 lines
144 B
PHP
Raw Permalink Normal View History

2023-06-13 16:21:52 +03:00
<?php
function generation_kuri(){
2023-06-13 16:54:49 +03:00
ob_start();
index_kuri();
$result = ob_get_contents();
ob_end_flush();
echo $result;
2023-06-13 16:21:52 +03:00
}