I suppose there will be a few authors who write several articles too, so it's a many-to-many relationship.
What you'll end up with is a table containing the articles, a table containing the authors, and a table containing only the links between the articles and te authors.
So every time you want to add an author to an article, you add one record to the "xref" table, containing the ID of the article and the ID of the author.
When you want to get the data back out you can do a JOIN query like this:
SELECT *
FROM articles, authors, xref
WHERE articles.id=10
AND xref.authorid=xref.articles.id
AND authors.id=xref.authorid;