imaginando que tu ficheor solo tiene 6 lineas
fichero.txt
Código:
pepe#pedro#chaco#456
pepe#juan#chaco#456
santi#pedro#chaco#456
pepe#juan#chaco#456
pepe#juan#chaco#456
pepe#juan#chaco#456
abrir.php
Código HTML:
<table>
<thead>
<tr>
<th>Nombre</th>
<th>S Nombre</th>
<th>Apodo</th>
<th>Nro</th>
</tr>
</thead>
<tbody>
<?
$solo = "pepe";
$lines = file('fichero.txt');
foreach ($lines as $line_num => $line) {
$datos = explode("#", $line);
if($datos[0]==$solo){
?>
<tr>
<td><?=$datos[0];?></td>
<td><?=$datos[1];?></td>
<td><?=$datos[2];?></td>
<td><?=$datos[3];?></td>
</tr>
<?
}
}
?>
</tbody>
</table>
nos vemos!!! n.n