@SeckinBilisim; buyrun hocam
<?php
/* burada mysql bağlantınız olmalıdır. */
$res = mysql_query("SELECT `puan`, `krallik` FROM `player`");
$rows = array();
while($row = mysql_fetch_assoc($res))
{
$rows[] = $row;
}
foreach($rows as $row)
{
echo "Krallık: {$row->krallik}, Puanı: {$row->puan}\n";
}