Closed. This question is
not reproducible or was caused by typos. It is not currently accepting answers.
Answer
Solution:
Alright so I fixed the code the thing is I didn't bind all the parameters earlier and it kept giving me that error, so to fix it i did this:
$stmt->bind_param("isssssss", $Stud_num, $Name, $Faculty, $Lecturer, $Lecturer_Email, $R_Date, $R_Time, $Reason);
as you can see, the isssssss, accounts for every column and field thus inputting them inside the database.
Also changed the table name to Appointment_Details
like many here mentioned, thank you very much.
Source