do it with just one query! Replace the words in UPPERCASE corresponding your database structure ..
<?
//#### Query
$members_query = "SELECT m.*, s.* FROM vwar_member m, vwar_memberstatus s WHERE s.statusid = m.MEMBERSTATUS_IN_MEMBERTABLE";
$res = mysql_query($members_query) or die(mysql_error());
if(mysql_num_rows($res)==0)
{
echo "no members found!";
}
else
{
// Found members -> display them!
?>
<div class="dateheader">British Born Killers Roaster</div>
<table cellpadding="3" cellspacing="2" width="100%">
<?
//######
//###### repeat starts here
//######
while($row = mysql_fetch_array($res))
{
?>
<tr class="bgTwo">
<td width="20px" class="bgOne"><?php echo $row["SOMEROW"]; ?></td>
<td><?php echo $row["SOMEROW"]; ?> </td>
<td><?php echo $row["SOMEROW"]; ?> </td>
<td><a href="index.php?thepage=profile&plid=<?php echo $row["SOMEROW"]; ?>">Details</a></td>
</tr>
<?
//######
//###### repeat ENDS here
//######
}
?>
</table>
<?
} // End members display
?>