Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php
$db = &JFactory::getDBO();
$option = JRequest::getCmd('option');
$view = JRequest::getCmd('view');
$temp = JRequest::getString('id');
$temp = explode(':', $temp);
$id = $temp[0];
if ($option == 'com_content' && $id)
{
$db->setQuery('SELECT c.title FROM #__categories c WHERE id = ( SELECT cd.catid FROM #__content cd WHERE id ='.$id.')');
$category_name = $db->loadResult();
echo $category_name;
}
?>
Как-то так возможно вывести:
PHP:<?php $db = &JFactory::getDBO(); $option = JRequest::getCmd('option'); $view = JRequest::getCmd('view'); $temp = JRequest::getString('id'); $temp = explode(':', $temp); $id = $temp[0]; if ($option == 'com_content' && $id) { $db->setQuery('SELECT c.title FROM #__categories c WHERE id = ( SELECT cd.catid FROM #__content cd WHERE id ='.$id.')'); $category_name = $db->loadResult(); echo $category_name; } ?>