12 lines
144 B
PHP
12 lines
144 B
PHP
<?php
|
|
|
|
function generation_kuri(){
|
|
|
|
ob_start();
|
|
index_kuri();
|
|
$result = ob_get_contents();
|
|
ob_end_flush();
|
|
|
|
echo $result;
|
|
|
|
} |