PHP: $thispage = $_SERVER['REQUEST_URI']; получаем ссылки вида http://site.ru/index.php?option=com_content&id=119&task=view или http://site.ru/index.php?option=com_virtuemart&category_id=14&page=shop.browse вот как мне это значение 119, или 14 записать в переменую $id
Регуляркой можно: PHP: $thispage = $_SERVER['REQUEST_URI']; preg_match("/id=(\d+)/i", $thispage, $m); $id = $m[1];