How to get Article content ,article title and article alias in Joomla 1.5.19.
here is the solution
<?php
$article =& JTable::getInstance("content");
$article->load('Your article ID');
echo $article->get("title");
echo $article->get("introtext");
echo $article->get("alias");
?>
Hope this will help !
here is the solution
<?php
$article =& JTable::getInstance("content");
$article->load('Your article ID');
echo $article->get("title");
echo $article->get("introtext");
echo $article->get("alias");
?>
Hope this will help !
No comments:
Post a Comment