
You can automatically reset the form fields after form submission by specifying settings resetForm = true. You can pass it in constructor function or set it directly in config file.
//pass reset form true in constructor function or you can set it via config file
$pdocrud = new PDOCrud(false, "", "", array("resetForm" => true));
echo $pdocrud->dbTable("employee")->render("INSERTFORM");
