Hy hugys! How can I insert a record into a Table, which structure looks like the following: teacher(AUTO INC nr, CHAR(20) name) with INSERT INTO teacher (nr,name) VALUES (1,hugo) it is not possible to insert !! thanks!
You can not insert an auto-incremented field... try using
INSERT INTO table SET name='$users_name'