Iti trebuie o ancora/legatura, ce user are ce poza.
De exemplu, in fisierul tau text, poti sa ai ceva de genul
Georgescu|Marcel|Bucuresti|poza1.jpg
Popescu|Vasile|Cluj-Napoca|poza2.jpg
Mateescu|Cornel|Constanta|poza3.jpg
Pozele sunt salvate in folderul uploads, ca sa le afisezi poti avea ceva de genul
<div class="table-responsive">
<table class="table table-hover table-dark">
<thead>
<tr>
<th scope="col">Nume</th>
<th scope="col">Prenume</th>
<th scope="col">Adresa</th>
</tr>
</thead>
<tbody>
<?php
if(file_exists("log.txt"))
{
$bin = file_get_contents("log.txt");
$bin = explode("\n", $bin);
foreach($bin as $bins)
{
$bins = explode("|", $bins);
echo "<tr><td>$bins[0]</td><td>$bins[1]</td><td>$bins[2]</td><img src='uploads/$bins[3]'></td></tr>";
}
}else{
echo "<tr><td colspan='4'>Oops :(</td></tr>";
}
?>
</tbody>
</table>
</div>