firstPHP/example_json.php

33 lines
1.0 KiB
PHP
Raw Normal View History

2024-03-20 17:46:58 +03:00
<?php
ini_set("display_errors", 1);
error_reporting(-1);
require_once "vendor/autoload.php";
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="vendor/twbs/bootstrap/dist/css/bootstrap.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
<title>Document</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-12">
<?php
$form = new \itguild\forms\JsonForm(file_get_contents("form.json"));
$form->convertHTML();
$form->render();
?>
</div>
</div>
</div>
</body>
</html>