The field 'catid' on the articlesystemcat table is autoincrement... But you can add a field called 'catid' on the articlesystem table and it doesn't need to be an auto increment field. THe catid field on the articlesystem table will only have the category id number for every article...
Like this:
Code:
TABLE: articlesystem
---------------------------
artid catid artname artfull
1 1 my life This is the history of my life...
2 1 kevin! About my brother kevin...
3 2 PHP A mini PHP manual..
Code:
TABLE: articlesystemcat
------------------------
catid catname
1 Personal life
2 Programming stuff...
You see the relationship between the two tables?