2011-12-11, 08:04:33
m1k3y Wrote:short question
I want to display all vistors using {% visits %} (dynpages) to show the component "visits" which contains this function <?php return_hitcount_visits() ?>
but it doesn't work...normal text is shown...how do i have to call the function, to show all visitors?
What do you mean with "normal text is shown"?
If you include the above component on a page, it should show nothing. If you want to show the number of visits, you need to output the number with echo:
Code:
<?php echo return_hitcount_visits() ?>