-3

I have this form where employees can send feedbacks.

enter image description here

I have two tables, employee and tbl_feedback.

The employee_id in my tbl_feedback references id in my employee table.

Now my question is, are there any other way to make it work without putting Employee ID on my form?

Andre F
  • 33
  • 6

1 Answers1

0

You can just make the form field hidden.

<input type="hidden" value="{{employee id here}}" />
Isaac Vidrine
  • 1,568
  • 1
  • 8
  • 20