Read out SEF Parameters - Joomla! Forum - community, help and support
hi,
i have porbably rather easy question regarding sef.
i got folwing url
http://www.domain.com/component/option, ... itstart,4/
/catid,1/
i need read out paramter of catid (which in case 1) put script writing right now.
how do that? (in case , in general)
thanks in advance
martin
i have porbably rather easy question regarding sef.
i got folwing url
http://www.domain.com/component/option, ... itstart,4/
/catid,1/
i need read out paramter of catid (which in case 1) put script writing right now.
how do that? (in case , in general)
thanks in advance
martin
you might want try this; it's modules use:
$catid = intval( $params->get( 'catid' ) );
jen
$catid = intval( $params->get( 'catid' ) );
jen

Comments
Post a Comment