What are tags like <?php echo $maincolumn_height; ?> called? - Joomla! Forum - community, help and support
i have been learning designing template , approach studying other templates . & during process came across php tags :-
<?php echo $maincolumn_height; ?>
<?php if($this->countmodules('breadcrumbsload') || $this->countmodules('position-0')): ?>
and others. understood how work , logic behind use.but not find documentation on them learn more of php tags . tried google them php strings , googled them directly result null.can tell me called , wheres list of php tags. novice programmer direct me in right direction.
<?php echo $maincolumn_height; ?>
<?php if($this->countmodules('breadcrumbsload') || $this->countmodules('position-0')): ?>
and others. understood how work , logic behind use.but not find documentation on them learn more of php tags . tried google them php strings , googled them directly result null.can tell me called , wheres list of php tags. novice programmer direct me in right direction.
it simple if/endif statemtn.
it goes this:
if (condition):
endif;
if condition satisfied blog befor : , endif executed. if no -well no.
cheers.
it goes this:
if (condition):
endif;
if condition satisfied blog befor : , endif executed. if no -well no.
cheers.
Comments
Post a Comment