Rather than using a full version of the title, it's easier for users to remember if you "slugify" it, removing unneccessary punctuation (which also tends to look ugly in URLs):
Code:
function slugify($str) {
return strtolower(preg_replace(array('/ /', '/\W/'), array('/-/', ''), $str));
}
Also, IMO, your URLs are too long. You can remove the variable names for a start, as well as having view_article be a sensible default action for articles, and end up with an URL that looks like /news_area/article/1/ps3-caused-gta-iv-delay.
Bookmarks