diff --git a/contactus.php b/contactus.php index 7540133..fb3384f 100644 --- a/contactus.php +++ b/contactus.php @@ -16,7 +16,7 @@

Please provide the feedback about your problem

-
+
- +
diff --git a/uploadfeedback.php b/uploadfeedback.php new file mode 100644 index 0000000..038de0b --- /dev/null +++ b/uploadfeedback.php @@ -0,0 +1,34 @@ +prepare( + "INSERT INTO feedback (user_id,name,email,feedback) + VALUES (?, ?, ?, ?)" + ); + $stmt->bind_param( + "isss", + $user_id, + $username, + $email, + $feedback + + ); + $stmt -> execute(); + echo ""; + exit; +} + +?> \ No newline at end of file