Hi, 
I want to run a php script for a counter out of my own template? I have to execute the following lines in different parts of the page. 
<?php include "/home/marschou/public_html/phphits/phphits.inc.php"; ?> 
<?php phphitsAddHit(); ?> 
<?php echo phphitsShowHits(0); ?> Visits 
How can I activate it? 
Thanks, Flo.
			
			
			
				I would put it in a custom footer if I were you. That way you could control where it ends up in the template.
there's an example of adding a custom header in the docs, as well as in the forums if you search.
the only difference between a custom header and custom footer, is that a header would be dealt with in pageheader, and the footer would be in pagefooter
http://coppermine.sourceforge.net/faq.php#customHeader
			
			
			
				Thanx ... after some interesting lectures of php its working know.
:-) Flo.