hi..
i have a login system where people have to pick a team name..
this goes into my database fine.
how do i call the team names for all my members and display them on a team list page???
i have a select statement where it only displays the first teamname in my database...
as follows
Query compilation
$qstr = "SELECT * from members3;
Query execution
$result = mysql_query($qstr);
Query detail specification
$row = mysql_fetch_array($result);
The player will be accessible as
//echo $row['teamname'];
any ideas??