我创建了一个系统,其中文本文件的每一行应该位于表格的单独行上。表设计= https://puu.sh/AfCS7/d7448511ce.png
但是,多行看起来像= https://puu.sh/AfCSL/55e9cd41a3.png
我的frontend.php(管理表格)=
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Module</th>
<th scope="col">Username</th>
<th scope="col">Time</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<?php
$file = file("files/logs.txt");
if ($file) {
echo '<tr>';
foreach($file as $lines)
{
$linesSplit = preg_split('~,~', $lines, 4);
echo '<td>' . $linesSplit[0] . '</td>
<td>' . $linesSplit[1] . '</td>
<td>' . $linesSplit[2] . '</td>
<td>' . $linesSplit[3] . '</td>';
}
echo '</tr>';
}
?>
</tbody>
</table>
&#13;
我的backend.php(将每个动作添加到logs.txt)=
$logsFile = fopen($logfile, 'a');
fwrite($logsFile, $firstline . ', ' . $_SESSION['user'] . ', ' . $currentDate . ' - ' . $currentTime . ', Status changed to PROG' . "\n");
fclose($logsFile);
我有类似的表来管理每一行&amp;目录中的多个文件,我无法理解为什么这不起作用?
提前致谢,如果这很简单,那就更好了。