Ver Mensaje Individual
  #8 (permalink)  
Antiguo 09/05/2006, 13:23
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Por que no haces comprobaciones? Ejemplo:

Código PHP:
<?php
   $pvm 
getdate();
   
$archivo="libro.txt";
   
$uusi="<table border=0 width=95% cellspacing=1><tr><td width=30%><b>Nombre...";
   if(
file_exists($archivo))
   {
       
$tamanio=filesize($archivo);
       if(
$tamanio>0)
       {
           
$fp=fopen($archivo"r+");
           
$vanha=fread($fp$tamanio);
           
fseek($fp0);
           
fwrite($fp"${uusi}${vanha}");
           
fclose($fp);
       }
   }
?>
Mas largo ... mayor satisfacción, el tamaño importa.