can someone give me the code i need to remove lets say an "article" from a database?
To delete one or more rows from a table:
DELETE FROM table_name WHERE article_column_name = 'article key'
See: http://dev.mysql.com/doc/refman/5.0/en/delete.html
.