<?php
require_once('database.class.php');
class queryClass {
public function insert() {
$this->email = $_POST['email'];
$this->wacht = $_POST['wacht'];
$this->vn = $_POST['vn'];
$this->an = $_POST['an'];
if(isset($_POST['btn'])) {
$query = "INSERT INTO test
(emailadres, wachtwoord, voornaam, achternaam)
VALUES(:ID, :email, :wacht, :vn, :an)";
$statement = $db->prepare($query);
$statement->bindValue(':email', $this->email, PDO::PARAM_STR);
$statement->bindValue(':wacht', $this->wacht, PDO::PARAM_STR);
$statement->bindValue(':vn', $this->vn, PDO::PARAM_STR);
$statement->bindValue(':an', $this->an, PDO::PARAM_STR);
$statement->execute();
$statement->closeCursor();
}
}
}
?>
答案 0 :(得分:0)
您需要在成功代码/您想要刷新的任何地方使用location.reload();
答案 1 :(得分:0)
JavaScript提供了一个方便的函数,称为重载到位置对象,你可以像这样使用它:
window.location.reload()
答案 2 :(得分:0)
您可以使用location.reload()
刷新页面
答案 3 :(得分:0)
成功提交表单后,您可以使用location.reload()
。如果您只想清空所有字段,可以使用var anyField= "";