i repeated the request below: (the request is secure)
UPDATE otelozellik
SET isim_tr='test',
aciklama_tr='<p>test1</p>',
uyari_tr='test',
tag_tr='test'
WHERE id='1'
Database error: unknown column 'aciklama_tr' in 'list of fields'
I reordered the columns after isim_trcontinuing to give an error. When I move isim_trto the last, one after idgives the same error. But moving them to the last position is not for me, because the table will be dynamic, if necessary, add new columns. need an absolute solution.
UPDATE: LAST SCREENSHOT: http://img5.imageshack.us/img5/7215/mysqlerror.jpg
solved. The solution is given below. Thanks to everyone.
source
share