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>
|