Wrote a code with page navigation, and information output: photo - nickname under the photo
$q="SELECT * FROM user ORDER BY nick LIMIT $start,$per_page"; $res = $connection->query($q); while($row = mysqli_fetch_array($res)) { echo '<div class=profile-bd>'; echo "<table>"; echo "<tr><td align=center><br><a href='bd.php?act=nick_info&id=".$row['id']."'><img src='".$row['photo_url']."' width='150' height='150' alt='Фото пользователя'></td></tr>"; echo "<tr><td align=center>".$row['nick']."<font color='#ffffff'></font></a></td></tr>"; echo '</table>'; echo '</div>'; } the problem is that everything is displayed in 1 column, I just can not understand how to display information in 3 or 4 columns
Please stick your nose where I'm not doing this, I would like to see something like this 
