Ok my previous question i solved. Now the next problem `:]
:
<?php
$query = "SELECT cname, ctag, irc, id FROM registrated";
$result = mysql_query($query);
while($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo "<b>Clan name :</b> <a href=\"clans2.php?query=".$row['id']."\">{$row['cname']}</a><br />".
"<b>tag :</b> {$row['ctag']} <br>" .
"<b>irc channel : </b>{$row['irc']} <br><br>";
}
?>
So now when u press 1 of the links, it goes to the page with query="idhere"
but how do i put the right info of that id + team from the database into the page :/