i got a problem, where can i place my </tr>
so it shouldnt get duplicated when its in a while?
<table border="0" cellspacing="0" cellpadding="0" >
<tr>
<?php
while ($pF = mysql_fetch_array($stringVisits))
{
$BuID= mysql_real_escape_string($pF['BuID']);
$getByInfo = mysql_query("SELECT * FROM users_profile WHERE uID = '$BuID'") or
die(mysql_error());
$getByProfile = mysql_fetch_array($getByInfo);
$getByInf = mysql_query("SELECT full_name, sex FROM users WHERE id = '$BuID'") or
die(mysql_error());
$getByProfil = mysql_fetch_array($getByInf);
?>
<td class="viewercell" style="color: #CCC; font-size: 10px;">
<?php
echo "<a href='profil.php?id=".$BuID."'>";
echo "<img style='margin-right: 5px; width: 44px; height: 48px; border: 2px solid #FFF; ' src='images/profilePhoto/thumbs/";
if (!empty($getByProfile["photo_thumb"]))
{
echo $getByProfile["photo_thumb"];
} else {
echo "noPhoto_thumb.jpg";
}
echo "'>";
?>
</a>
</td>
I would like to close that <tr>
and start a new one, but how can i do that? If i just put in </tr>
under the above^ it will duplicate the </tr>
because its inside the while()
If i do it after closing }
the while, i can not use the while()
´s $pF anymore in my next tr.
I want to make a new tr for showing the username under the profilephoto above.