forms2/index.php
2025-03-14 17:42:58 +03:00

24 lines
522 B
PHP

<?php
require_once "vendor/autoload.php";
error_reporting(-1);
ini_set("display_errors", true);
$inputs = json_decode(file_get_contents(__DIR__ . "/form.json"), true);
// включаем буфер
ob_start();
// выводим информацию
include __DIR__ . "/views/index.php";
// сохраняем всё что есть в буфере в переменную $content
$content = ob_get_contents();
// отключаем и очищаем буфер
ob_end_clean();
include "views/layouts/main.php";