Re: Putting php code into html



Denis wrote:
How do you include a php counter into a html page. I've tried <?php
include ("counter.php"); ?> but it won't work. any suggestions

your include file is wrong. It should be

<?php include("counter.php") ?>

note that there is no semi colon
.