Met456: Nach Name sortieren

Beitrag lesen

Hi ich wollte über php aus meiner db die einträge nach namen sortieren so weit bin ich gekommen

<?php

$con = mysql_connect("localhost", "xxx", "xxx");
mysql_select_db("xxx", $con) or die (mysql_error());

$sql = "SELECT *
          FROM T\_game
         WHERE (ID >= '1' AND ID <= '15')
      GROUP BY Name
         LIMIT 0 , 20 ";

$result = mysql_query($sql, $con) or die (mysql_error());

if ($result)
  while ($row = mysql_fetch_array($result, MYSQL_NUM) ) {
        echo $row[0] . "<br />";
  }

?>

aber ich kriege nur die ID und nicht die name sortiert