Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/09/2010, 02:21
murcielag56
 
Fecha de Ingreso: septiembre-2010
Mensajes: 72
Antigüedad: 13 años, 7 meses
Puntos: 0
error al leer fichero

Estoy tratando de hacer este script para leer un fichero, pero me dice error en linea 8.

<?
$fichero=fopen( "C:\Users\carlos\Documents\datos.dat","r" );
while (!feof($fichero)){
$linea=fgets($fichero);
}
echo $linea;

>?