I need to get the TAGS associated with an article in Joomla 3.1.5
I have tried the following but they do not return a string:
echo $article->item->tags->itemTags;
and
$tags = $article->get("tags");
And just for the record I am loading the article info as such (getting the article title works perfectly)
$article = JTable::getInstance("content");
$article->load(JRequest::getInt("id"));
$pageTitle = $article->get("title");
$user =& JFactory::getUser();