Hey all. Great forum. Anyways to the chase, I have this thing setup so it'll go in and get my clan members user_id (auto_increment), and then their name and their username, basic to start off. When its coming out I wanted it to seperate itself in to it's own table but i left with only the first entry being put in the table and the other members come out right after it outside the table. any suggestions?
<?
// Disciple Members Page with details
$server="localhost";
$username="root";
$password="(password deleted);
$myconnect=mysql_connect($server,$username,$password);
mysql_select_db("disciple",$myconnect);
$result=mysql_query("SELECT * FROM members");
echo "<table border=\"1\"";
while($row = mysql_fetch_array($result)){
echo ("<tr><td>".$row['user_id']."</td><td>".$row['uname']."</td></tr></table>");
};
?>