when I add new required in phpgrid it does not work, however the grid show the record already added.
2 Answers
Hi, I solved that problem by removing spaces from columns name in MySQL database.
example
// does not work
table : clients
Client name
Client Type
does work
// does not work
table : clients
Client_name
Client_Type
Your Answer