This commit is contained in:
Naumann 2020-06-09 13:32:38 +02:00
parent e70c6210b0
commit 085c62f199

View file

@ -5,10 +5,12 @@
"Title"=>$_POST["Title"], "Title"=>$_POST["Title"],
"Author"=>$_POST["Author"]); "Author"=>$_POST["Author"]);
$json = json_encode($form); $json = json_encode($form);
echo $json; //echo $json;
// Dieser Schritt dient nur um die Daten wieder in der Ausgabe anzeigen zu lassen, // Dieser Schritt dient nur um die Daten wieder in der Ausgabe anzeigen zu lassen,
//muss später noch an eine andere Stelle gepackt werden 8z.B. nach dem Empfang von Daten aus der API) //muss später noch an eine andere Stelle gepackt werden 8z.B. nach dem Empfang von Daten aus der API)
$json2= json_decode($json, true); $json= json_decode($json, true);
} }
@ -62,11 +64,11 @@
</tr> </tr>
<tr> <tr>
<td class="fix">Titel</td> <td class="fix">Titel</td>
<td><?php if(isset($_POST["go"])) echo $json2['Title']; ?></td> <td><?php if(isset($_POST["go"])) echo $json['Title']; ?></td>
</tr> </tr>
<tr> <tr>
<td class="fix">Autor</td> <td class="fix">Autor</td>
<td><?php if(isset($_POST["go"])) echo $json2['Author']; ?></td> <td><?php if(isset($_POST["go"])) echo $json['Author']; ?></td>
</tr> </tr>
<tr> <tr>
<td class="fix">Land</td> <td class="fix">Land</td>