In the game I've made I have added a function so that the members can create and join clans.. Now I want to create a ladder for the families but i cant figure out how to add rows togheter. I think it got something to do with loops..
the tiny piece of code I've got so far:
$result = mysql_query("SELECT id FROM clans",$db);
$info = mysql_fetch_array($result);
$clanid = $info["id"];
$result2 = mysql_query("SELECT score FROM users WHERE tagid='$clanid'",$db);
now what..? 😛
thanks 🙂