Created
August 31, 2017 03:18
-
-
Save qwersk/ceae67bdc77bb79adcbbcb66e34dd78b to your computer and use it in GitHub Desktop.
Get article content #Joomla
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$id = JFactory::getApplication()->input->getInt('id'); | |
$article = JTable::getInstance("content"); | |
$article->load($id); | |
echo $article->get("introtext"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment