[Answered ]-Field 'id' expected a number but got 'POST'

1👍

I found my own mistake, in the form html element I have action="POST", it should be method="POST"

so it should be:

<form method="POST">

Leave a comment