I am trying to insert data into phpmyadmin. I am kinda new to this. I am trying to insert data with an HTML form. I have the following HTML code:
<form id = "vraagStellen" action = "shoutbox.php" method = "post" class = "col-lg-12 col-md-12 col-sm-12 form-inline" role="form">
<div class = "selectAfbeelding form-group">
<label for "selectAfb">Naam:</label><br />
<input type = "text" id = "selectAfb" name = "selectAfb" class = "form-control" maxlength="30"><br />
</div>
<div class = "selectVraag form-group">
<label for "vraag">Bericht:</label><br />
<input type = "text" id = "vraag" name = "vraag" class = "form-control" maxlength="100">
</div>
<br />
<input type="reset" name = "reset" value = "Opnieuw" id = "reset">
<input type="submit" name = "verzend" value = "Verzenden" id = "verzenden">
</form>
And the PHP:
try {
$conn = new PDO("mysql:host=".localhost.";dbname=".dbname, dbuser, dbpass);
} catch(PDOException $e) {
echo $e->getMessage();
die();
}
$afbeelding = $_POST['selectAfb'];
$question = $_POST['vraag'];
$sql3 = "INSERT INTO `dbi286018`.`vraagstellen` (`id`, `Afbeelding`, `Vraag`, `date`) VALUES (NULL, :afbeelding, :question, CURRENT_TIMESTAMP);";
//Prepare your query
$stmt = $conn->prepare($sql3);
//Execute your query binding variables
$stmt->execute(array(':id'=>NULL, ':Afbeelding'=>$afbeelding, ':Vraag'=>$question));