Zaidejas1324 Posted August 19, 2010 Share Posted August 19, 2010 Hi i made a table which keeps player scores, but it is messed. Here's a link - http://kzlt.dev.lt/taure/rezultatai.php. How can i fix it ? The code: $text .= " <center><table border='1' width='565' height=30><tr><td width='15'>Nr.</td><td width='250'>Žaidėjas</td><td width='150'><center>Taškai</center></td><td width='150'><center>Dalyvavo</center></td></tr>"; $result = mysql_query("SELECT * FROM taure_lentele ORDER BY score DESC"); while($row = mysql_fetch_array($result)) { if($rank == 1) { $color = "FF3300"; } else if($rank == 2) { $color = "FF6600"; } else if($rank == 3) { $color = "FF9900"; } else { $color = "FFCC00"; } $text .= '<tr bgcolor="'.$color.'"> <td width="15">'.$rank++.'</td> <td width="250"><b>'.$row['name'].'</b></td> <td width="150"><center>'.$row['score'].'</center></td> <td width="150"><center>'.$row['played'].' k.</center></td> </tr></center>'; } $text .= "</table>"; Quote Link to comment https://forums.phpfreaks.com/topic/211212-order-by-gone-wrong/ Share on other sites More sharing options...
Pikachu2000 Posted August 19, 2010 Share Posted August 19, 2010 It looks fine to me. What is the problem? Quote Link to comment https://forums.phpfreaks.com/topic/211212-order-by-gone-wrong/#findComment-1101388 Share on other sites More sharing options...
Rifts Posted August 19, 2010 Share Posted August 19, 2010 looks fine to me also Quote Link to comment https://forums.phpfreaks.com/topic/211212-order-by-gone-wrong/#findComment-1101396 Share on other sites More sharing options...
teng84 Posted August 19, 2010 Share Posted August 19, 2010 developer is the problem joke maybe this is already fixed Quote Link to comment https://forums.phpfreaks.com/topic/211212-order-by-gone-wrong/#findComment-1101416 Share on other sites More sharing options...
Pikachu2000 Posted August 19, 2010 Share Posted August 19, 2010 It must have been a PEBCAK error . . . Quote Link to comment https://forums.phpfreaks.com/topic/211212-order-by-gone-wrong/#findComment-1101419 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.