FrontendDavid/php/catalogue_search.php

14 lines
366 B
PHP
Raw Normal View History

2020-06-08 08:10:08 +00:00
<?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>
?>