el problema es que tengo varias lineas de texto pero con el siguiente código solo obtengo la primera linea.[/size]
<?Php
$lineas = file('arvhivo.txt');
$nombre="arvhivo.txt";
$line=count($lineas)+1;
echo'
<table width="2046" >
<tr>
<th width="46" scope="col">primercamp</th>
<th width="102" scope="col">segundo campo</th>
<th width="44" scope="col">tercer campo</th>
<th width="39">cuarto campo</th>
<th width="66">quinto campo</th>
</tr>
';
$num=0;
$f = @fopen($nombre,r) or die("Error al abrir el archivo: $nombre");
if(!@feof($f)){
echo'<tr>';
@fseek($f, 0); echo '<td>'. @fread($f, 10).'</td>';
fseek($f, ; echo '<td>'. fread($f, 15).'</td>';
fseek($f, 12); echo'<td>'. fread($f, .'</td>';
fseek($f, 16); echo'<td>'. fread($f, 7).'</td>';
fseek($f, 19); echo'<td>'. fread($f, 9).'</td>';
echo'</tr>';
}
fclose($f);
?>
solo me lee la primera linea y tengo 5 lineas de texto