Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/11/2004, 13:40
jmaribau
 
Fecha de Ingreso: enero-2004
Mensajes: 235
Antigüedad: 20 años, 3 meses
Puntos: 0
Código PHP:
<?php
$fichero 
'archivotexto.txt';
$separador '#'

$fichero_array file($fichero);

$html[] = '<table>';

foreach (
$fichero_array as $linia) {
    
$html[] = '<tr>';
    
$linia_array explode($separador,$linia);
    foreach (
$linia as campo) {
        
$html[] = '<td>' campo '</td>';
    }
    
$html[] = '</tr>';
}
$html[] = '</table>';
echo (
implode('<br>',$html));

?>