14 lines
366 B
PHP
14 lines
366 B
PHP
|
<?php
|
||
|
$form = array("Title"=>$_GET["Title"],array("Author"=>$_GET["Author"]);
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Document</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
echo json_encode($form);
|
||
|
</body>
|
||
|
</html>
|
||
|
?>
|