Create table from text file using PHP [closed]

2019-09-21 10:32发布

I need to create a table with borders from the text file (this text file is updated every time when someone finishes filling a form. One row, one person):

Herard|TRO789|Suzuki|France|Gendolfina|Fresko|food|500|2015-04-25 14:40
Bob|MGA789|Mercedes|Latvia|Polaris|Dread|parts|1000|2015-04-26 16:15

I've already created a script which reads every word separately, but don't know how to to put them to table:

<?php
$file = fopen("info.txt", "r") or die("Unable to open file!");
while (!feof($file)){   
    $data = fgets($file); 
    list($name, $number, $type, $country, $company, $gcompany, $supply, $weight, $datetime) = explode("|", $data);
    }
    fclose($failas);
?>

So I need a script which could read the text file and create a table with the same number of rows as the text file has.

2条回答
淡お忘
2楼-- · 2019-09-21 10:58

This solution is not clean but works. you can also use explode to create an array instead of many variables:

<table>   
    <?php
        $file = fopen("info.txt", "r") or die("Unable to open file!");
        while (!feof($file)){   
            $data = fgets($file); 
            list($name, $number, $type, $country, $company, $gcompany, $supply, $weight, $datetime) = explode("|", $data);
    ?> 
    <tr>
        <td><?=$name ?></td>
        <td><?=$number ?></td>
        ...
    </tr>
    <?php
        }
        fclose($failas);
   ?>
</table>
查看更多
我命由我不由天
3楼-- · 2019-09-21 11:03

Use str_replace to replace the | signs with HTML table cell delimiters.

<?php
echo '<table border="1">';
$file = fopen("info.txt", "r") or die("Unable to open file!");
while (!feof($file)){   
    $data = fgets($file); 
    echo "<tr><td>" . str_replace('|','</td><td>',$data) . '</td></tr>';
}
echo '</table>';
fclose($file);
?>
查看更多
登录 后发表回答