beeproductions Posted July 17, 2013 Share Posted July 17, 2013 Hello readers, Well..here I am..with my first post and a big problem. I'm working on a game where you can post your scores from in-game to a MYSQL Database and a php file will display those values.. I have all the setup working really nice..the only thing it's that I would like to make a custom table design(check the pictures) I would like to be able to customize that table look..any examples..links or tips to help me achieve that? Thanks in advance! Quote Link to comment Share on other sites More sharing options...
cyberRobot Posted July 17, 2013 Share Posted July 17, 2013 So basically, you're looking for suggestions on how to improve the look of HTML tables? If so, are you familiar with CSS? Note: there are many tutorials online for stylizing HTML tables with CSS: https://www.google.com/search?q=css+tables Quote Link to comment Share on other sites More sharing options...
beeproductions Posted July 17, 2013 Author Share Posted July 17, 2013 So basically, you're looking for suggestions on how to improve the look of HTML tables? If so, are you familiar with CSS? Note: there are many tutorials online for stylizing HTML tables with CSS: https://www.google.com/search?q=css+tables First of all thanks for the fast reply. Uhm..yea..I know a bit CSS but your link will help me a lot.. My question is..how you make the table from the php file to use the css template My list.php code: <? include('config.php'); $query = "SELECT kills,name,scorea,date,ip,level,damage,scraps,secrets FROM scores_0 ORDER BY scorea "; $result=mysql_query($query) or die(mysql_error()); echo('<table border="1">'); while($row = mysql_fetch_array($result)) { echo("<tr>"); echo "<td>".$row['ip']."</td><td>".$row['name']."</td><td>".$row['scorea']."</td><td>".$row['date']."</td><td>".$row['kills']."</td><td>".$row['level']."</td><td>".$row['damage']."</td><td>".$row['scraps']."</td><td>".$row['secrets']."</td><td>"; echo("</tr>"); } echo("</table>"); mysql_close(); ?> Any guidance on this one? Quote Link to comment Share on other sites More sharing options...
fastsol Posted July 17, 2013 Share Posted July 17, 2013 Give the table a id and then target all the css at that id for the cells and rows. Quote Link to comment 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.