I have a feedback section at the bottom of my site but when I press submit it opens a new page, I want it to stay on the same page. https://voxet.net
<?php
if(isset($_POST['submit'])){
$feedback_desc = $_POST['feedback_desc'];
$cvsData = "$feedback_desc\n";
$fp = fopen("feedback.csv","a");
if($fp){
fwrite($fp,$cvsData);
fclose($fp);
}
}
?>