html - Would like to convert from a PHP row to a column -


i have ranking system on website , display in column rather row.

$result = mysql_query("select *, round(score/(1+(losses/wins))) performance images order round(score/(1+(losses/wins))) desc limit 0,10");  while($row = mysql_fetch_object($result)) $top_ratings[] = (object) $row; 


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -