Hit Counter Code giving ERROR

Hi All
I am getting an warning on my web page when I uploaded the page on server I just writing a PHP PAge Hit Counter-



Website counter





Here is the Code -
Counter.php
[code]<?PHP
session_start();
if(isset($_SESSION['views'])){
$_SESSION['views'] = $_SESSION['views']+ 1;
}else{
$_SESSION['views'] = 1;
}
echo "Total page views = ". $_SESSION['views'];
?>[/code]
And I used it like this in Survey_Form.php
[code]

<?php
echo "<hr>
";
include_once "counter.php"; // this will include the counter.
echo "
";
?>
[/code]
What is the problem with the code

Comments

  • Above error message is wrong. Correct message is
    Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/cbsecpsn/public_html/csnip/form_453570.php:7) in /home/cbsecpsn/public_html/csnip/counter.php on line 2

    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/cbsecpsn/public_html/csnip/form_453570.php:7) in /home/cbsecpsn/public_html/csnip/counter.php on line 2

    I am getting Output also
    One see the live on my website [link=http://cbsecsnip.in/csnip/form_453570.php]cbsecsnip[/link]
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion