hi!
"real" foreign keys you cannot use with mysql 3.23.49, i think.
in newer version their is a table type called "innodb" which can master this.
so what you can do is the following:
you have your article table, eg:
article_id | article_name
then you have your comment table, e.g.
comment_id | comment | article_id
then your article_id in the comment table is a foreign key.
to make sure you set the right article_id to your comments
their is no way but coding it by yourself.