Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. $id = JFactory::getApplication()->input->getInt('id');
  3. $article = JTable::getInstance("content");
  4. $article->load($id);
  5. $images = $article->item->images;
  6. echo $images;
  7. $pictures = json_decode($images);
  8. echo $pictures;
  9. ?>
  10.  
  11. <?php echo $pictures->image_intro; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement