|    
			
				15/12/2008, 17:58
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: noviembre-2008 
						Mensajes: 279
					 Antigüedad: 16 años, 11 meses Puntos: 0 |  | 
  |  Respuesta: Contadores de visitas  
  codigo para visualisar sin nesesidad de contar es lo mismo solo que en modo de consulta al txt  Cita:  <div style="position: absolute; width: 121px; height: 100px; z-index: 6; left: 19px; top: 275px" id="capa6"> <center>
 <table border="1" bordercolor="black">
 <tr>
 <td>
 <font color="#FF00FF">
 <small>Total Visitas:
 <?
 $filename = "counter.txt";
 @$fptr = fopen($filename, "r+");
 
 if ($fptr == NULL) {
 @$fptr = fopen($filename, "w+");
 fwrite($fptr, "1");
 fclose($fptr);
 echo "1";
 }
 else {
 $data = fread($fptr, filesize($filename));
 $dataInt = (int) $data;
 rewind($fptr);
 fwrite($fptr, $dataInt);
 fclose($fptr);
 echo $dataInt;
 }
 ?>
 </small></font></td>
 </tr>
 </table>
 </center>
 <p align="center">
 <small><font color="#FFFFFF">Copyright ©2008 ICAROS.<br>All rights reserved.<br>
 </font>
 <a href="http://icaros.pa.kz/"><span style="text-decoration: none">
 <font color="#FFFFFF">http://icaros.pa.kz/</font></span></a><font color="#FFFFFF">
 </font>
 </small>
 </p></div>
    |