Hello
I get this error if i would a add a new row
Incorrect integer value: ” for column ‘fg_id’ at row 1
I use
$var = 4;
$col[“editoptions”] = array(“value” => $var);
for the field fg_id
1 Answers
It looks like your field fg_id is auto-increment and you trying to insert a custom value in it.
The auto-increment column value should be skipped while inserting row.
Your Answer