FrontendDavid/php/catalogue_search.php

17 lines
347 B
PHP
Raw Normal View History

<!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>
2020-06-08 13:00:19 +00:00
<?php
$form = array(
"Title"=>$_POST["Title"],
"Author"=>$_POST["Author"]);
$json = json_encode($form);
echo $json;
2020-06-08 13:00:19 +00:00
?>
</body>
2020-06-09 06:05:04 +00:00
</html>