FrontendDavid/php/catalogue_search.php

10 lines
164 B
PHP
Raw Normal View History

2020-06-08 12:42:06 +00:00
<html>
2020-06-08 10:33:06 +00:00
<body>
2020-06-08 08:10:08 +00:00
<?php
2020-06-08 10:33:06 +00:00
$form = array("Title"=>$_POST["Title"],"Author"=>$_POST["Author"]);
$form = json_encode($form);
2020-06-08 12:42:06 +00:00
// echo $form
2020-06-08 10:33:06 +00:00
?>
</body>
</html>