A ver simplemente quiero hacer un contador, pero me da errores, como de permisos denegados
Y este es el código que le pongo a la tabla
Código:
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><?php $archivo = "numero.dat"; $abre = fopen($archivo, "r"); $total = fread($abre, filesize($archivo)); fclose($abre); $abre = fopen($archivo, "w"); $total = $total + 1; $grabar = fwrite($abre, $total); fclose($abre); echo "<font face='verdana' size='2'>Visitas:".$total."</font>"; ?> </td> </tr> </table>