Sorry, this article is not available.
SQL:
select a.*,
date_format(a.article_date,"%m/%d/%Y %H:%i") as date,
b.category_name,
c.first_name,
c.last_name,
c.username
from article a,
category b,
users c
where a.article_id =
and a.category_id = b.category_id
and a.author_id = c.user_id