Hello Guys, I just Worried here, This code it show to display multiple Images from database and The Name of Image, And I want to Display it Vertically then the Name of Images it should be the under of Images. I dont know how to do this thanks Guys. hers my code.
<?php
$query = "SELECT * FROM user where imgcheck = 'check' ORDER BY RAND() limit 10";
$result = mysql_query($query);
while ($row = mysql_fetch_object($result))
{
echo "<table>";
echo "<tr>";
echo "<td colspan='2'>";
echo '<img src="view_profile.php?id=' . $row->id . '" width="100" height="100">';
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<td>";
echo "<h6>$row->FullName</h6>";
echo "</td>";
echo "</tr>";
}
?>