FrontendDavid/php/catalogue_search.php

9 lines
161 B
PHP
Raw Normal View History

2020-06-08 15:00:19 +02:00
<html>
<body>
<?php
$form = array("Title"=>$_POST["Title"],"Author"=>$_POST["Author"]);
$form = json_encode($form);
2020-06-09 08:05:04 +02:00
echo $form
2020-06-08 15:00:19 +02:00
?>
</body>
2020-06-09 08:05:04 +02:00
</html>