// Website Hit Counter
// Writer: Max - Demian Net
// E-Mail: Max@Wackowoh.com
// WebSite: http://www.DemianNet.com htt
// p://www.Wackowoh.com
// Language: PHP
// Usage:
// include("counter.php");
// or
// require "counter.php";
// Variables:
$cntfile = "thenumber.txt"; // The filename where the number of hits is stored, if there isnt one then make it & put the number 0 in it
$rs = fopen ($cntfile, "r");
while (!feof($rs)) {
$cntr = fgets($rs, 4096);
}
fclose ($rs);
$wr = fopen ($cntfile, "w");
$cntr++;
fputs($wr, $cntr);
echo $cntr;
fclose($wr);
// start database opening
$dbname = "doctor";
include('db.inc.php');
echo "";
echo "