This commit is contained in:
ismail 2017-02-09 17:05:35 +01:00
parent d7d569bfac
commit bf19376c4a
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
<!-- The Picture upload Button begins here --> <!-- The Picture upload Button begins here -->
<div> <div>
<?php <?php
include 'postboard.php' include 'postboard.php';
?> ?>
</div> </div>
<!-- The Picture upload Button ends here --> <!-- The Picture upload Button ends here -->

View File

@ -15,7 +15,7 @@ if (isset($_POST['submit'])) {
$eintrag = $_POST['eintrag']; $eintrag = $_POST['eintrag'];
//Eintrag in Tabelle erstellen mit den vom Benutzer eingegebenen Daten //Eintrag in Tabelle erstellen mit den vom Benutzer eingegebenen Daten
$mysql->query("INSERT INTO demands(vorname, name, eintrag) $mysql->query("INSERT INTO demands (vorname, name, eintrag)
VALUES ('" . $vorname . "', '" . $name . "', '" . $eintrag . "')"); VALUES ('" . $vorname . "', '" . $name . "', '" . $eintrag . "')");
} }
?> ?>