Hola, miren tengo este codigo
-------
<?
/*
simple access counter for php3
(c)1998 David W. Bettis
[email protected]
modified to use images
1999 Kevin Clevenger
[email protected]
modified by Gerwin
[email protected]
*/
// file for the counter
$counterFile = "counter.txt";
// maximum number of digits used
$maxlen = 6;
// images dir
$imgdir = "./images/count/";
function displayCounter($counterFile) {
global $imgdir, $maxlen;
$fp = fopen($counterFile,rw);
$num = fgets($fp,$maxlen);
$num += 1;
for ($i=0; $i<strlen($num); $i++) {
$val = substr($num, $i, 1);
// to do a vertical counter add <br> to the end of this line
$imgstring = $imgstring . "<img src=$imgdir$val.gif>";
}
print "&nbsp;&nbsp;&nbsp;&nbsp;& ;nbsp;&nbsp;&nbsp;&nbsp;&nbsp;& ;nbsp;&nbsp;&nbsp;$imgstring";
$fp = fopen($counterFile,w);
fputs($fp,$num);
fclose($fp);
}
if (!file_exists($counterFile)) {
$num = 0;
fputs($fp,$num);
}
displayCounter($counterFile);
?>
--------
es un contador con imagenes, lo que hace es que cada que se llama a la pagina que contiene el codigo, este aumenta el numero, quisiera saber si se puede aumentar algo de codigo para que guarde la ip o una cookie y no me marque visitantes repetidos. me explico?????
espero me puedan ayudar.
<center><img border="0" src="http://www.efrance.fr/webonear/firma.png">