i wrote this:
<?php
$result = mysql_query("select pl_name from player where pl_team like '$team' ");
while($row = mysql_fetch_array($result))
{printf("<tr><td> %s %s</td></tr>", $row["pl_name"]); }
?>
and display this:
Charles Barkley
Michael Jordan
...
...
etc
very simple but it works. Now, what i need is that each name have a link to his own info, stored in the db, so i can press on the name and take me to the info.
i hope u can fully understand what i am asking