FrontendDavid/php/catalogue_search.php

9 lines
161 B
PHP
Raw Normal View History

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