Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/06/2008, 07:06
Avatar de Raulmmmm
Raulmmmm
 
Fecha de Ingreso: marzo-2007
Ubicación: En otro lugar que tú
Mensajes: 1.549
Antigüedad: 17 años, 1 mes
Puntos: 36
Respuesta: Contador de links

Se puede hacer si tienes un servidor PHP, te paso el código:

inicial.html
Aquí tienes tu enlace:
Código HTML:
<a href="red.php">Enlace a una página</a> 
red.php
Pon esto:
Código PHP:
<?php
$sitio 
'ultima.php';
$archivo 'cuantos.txt';
$fp fopen($archivo,'r');
$texto fread($fpfilesize($archivo));
$texto++;
fclose($fp);
$fp fopen($archivo,'w');
fwrite($fp,$texto);
header("Location: $sitio");
?>
Creas un archivo llamado cuantos.txt y le pones únicamente un 0.

ultima.php
Aquí ponemos ya el número de veces que se ha pinchado:
Código PHP:
<?php
$archivo 
'cuantos.txt';
$fp fopen($archivo,'r');
$texto fread($fpfilesize($archivo));
echo 
$texto;
fclose($fp);
?>