I know how to limit the number of rows returned in a query:
$result = mysql_query("SELECT * FROM playerdb where CFHL_A = 'XMEN' OR CFHL_B = 'XMEN' order by field(pos,'LW','C','RW','D','G'), PTS0910 DESC LIMIT 0, 11")
or die(mysql_error());
However, now I am looking to fix a table to 25 rows, even though there may only be 20 rows of data. In this exmaple, I would like the first 20 rows to have data and the bottom 5 rows to be blank.
Is this possible?