Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/12/2001, 10:59
MMontes
 
Fecha de Ingreso: noviembre-2001
Mensajes: 415
Antigüedad: 23 años, 6 meses
Puntos: 0
Re: Sencillo para ustedes

un contador de visitas es facil

<pre>#!/usr/bin/perl -w

use strict;

my $cantvisitas;
my @archivo;

if (-e &quot;visitas.txt&quot;) {
open (ARCHIVO, &quot;visitas.txt&quot;);
@archivo = &lt;ARCHIVO&gt;;
close (ARCHIVO);
}

$cantvisitas = $archivo[0] + 1;

open (ARCHIVO, &quot;&gt;visitas.txt&quot;);
print ARCHIVO $cantvisitas;
close (ARCHIVO);
print &quot;Content-type: text/html\n\n&quot;;
print $cantvisitas; </pre>

usando un SSI
&quot;&lt;!--#exec cgi=&quot;visitas.cgi&quot; --&gt;&quot; dentro de un .shtml, ya esta.