Aravinthan Posted August 16, 2009 Share Posted August 16, 2009 Hi guys, Here is my problem, I am extracting data from a MYSQL table and formatting it into a table. But what I want is that the first row should be: <tr> The second one to be: <tr class='odd' > Third one: <tr> And so on.... I am pretty sure its simple ,but I cant put my finger on it.... :facewall: :facewall: Quote Link to comment https://forums.phpfreaks.com/topic/170514-solved-mysqlphpcss/ Share on other sites More sharing options...
lynxus Posted August 16, 2009 Share Posted August 16, 2009 Maybe im being stupid, but what do you mean by "row" when talking about html? Are you trying to have some form of rotating table row color or themes? Ie: row1 black row2 white row3 black row4 white etc etc. This is how i do rotating background colors: <?php $bgcol = "FFCC66"; // then in a while loop for mysql : if ($bgcol == "FFCC66") { // this will rotate the value. $bgcol = "FFFF99"; }else{ $bgcol = "FFCC66"; } echo "<tr bgcolor=\"#$bgcol\"><td>"; [code] This isnt probably what youw ant, however you may beable to understand where im coming from? and modify it? Quote Link to comment https://forums.phpfreaks.com/topic/170514-solved-mysqlphpcss/#findComment-899452 Share on other sites More sharing options...
Aravinthan Posted August 16, 2009 Author Share Posted August 16, 2009 Hi, Thanks for your reply, But it isnt what I mean, I have a CSS stylesheet, that changes the background color of the table row. But for that I need to put: class='odd' To be a different colors.... Quote Link to comment https://forums.phpfreaks.com/topic/170514-solved-mysqlphpcss/#findComment-899455 Share on other sites More sharing options...
lynxus Posted August 16, 2009 Share Posted August 16, 2009 tyen something like $class = "class=\'odd\'"; // then in a while loop for mysql : if ($class == "class=\'odd\'") { // this will rotate the value. $class = ""; }else{ $class = "class=\'odd\'"; } echo "<tr $class ><td>"; All were doing here is rotating a value in a var, you then echo thi svar into the echoes html . Quote Link to comment https://forums.phpfreaks.com/topic/170514-solved-mysqlphpcss/#findComment-899458 Share on other sites More sharing options...
Aravinthan Posted August 16, 2009 Author Share Posted August 16, 2009 Nicely tought But, Its not working, I am thinking maybe I am placing it wrong... So here is the code: </tfoot> <?php error_reporting(0); $link = mysql_connect ("localhost", "", "") or die("mysql_error()"); mysql_select_db ("liguehs_league", $link); $class = "class=\'odd\'"; $action = $_GET['action'] ; switch ($action) { case "all": // Toute les equipes $result = mysql_query("SELECT * FROM `teams` ",$link); while($row = mysql_fetch_array($result)) { if ($class == "class=\'odd\'") { // this will rotate the value. $class = ""; }else{ $class = "class=\'odd\'"; } echo "<tr $class><td><a href='team.php?name=" .$row['team_name']. "'>" .$row['team_name']. "</a></td>"; Its only part of it.... But seems ot not be working Quote Link to comment https://forums.phpfreaks.com/topic/170514-solved-mysqlphpcss/#findComment-899463 Share on other sites More sharing options...
lynxus Posted August 16, 2009 Share Posted August 16, 2009 it may be having issues with the 's and "s try replacing all "class=\'odd\'" with 'class="odd"' Other than that, it looks correct. Cant see what else could be wrong. Maybe try tinkering with a test page. Quote Link to comment https://forums.phpfreaks.com/topic/170514-solved-mysqlphpcss/#findComment-899467 Share on other sites More sharing options...
Aravinthan Posted August 16, 2009 Author Share Posted August 16, 2009 It works now, Thanks. All i did is take away the // As there is no reason to espace that .... Thanks again! Quote Link to comment https://forums.phpfreaks.com/topic/170514-solved-mysqlphpcss/#findComment-899471 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.