login  Naam:   Wachtwoord: 
Registreer je!
 Forum

opmaak van tabel (Opgelost)

Offline maigel - 10/07/2007 00:43
Avatar van maigelPHP beginner hoy,
ik zou graag m'n gegevens ordenen in een tabel die er zo ongeveer uit ziet als te tabel bij tutorials hier op sima.
dit had ik al:

  1. <link rel="stylesheet" href="images/tabel.css" type="text/css" />
  2.  
  3. <?php
  4.  
  5. include("dbconnect.php");
  6.  
  7. $sQuery = "SELECT * FROM htmltuts ORDER BY naam DESC";
  8.  
  9. $rResult = mysql_query($sQuery);
  10.  
  11. $list = '<table width="503" border="0" cellspacing="0" cellpadding="0" class="tabeltutorials">';
  12.  
  13. while($r = mysql_fetch_array($rResult)) {
  14. $list .= '<tr class="licht"><td width="154">'. $r['naam'] . '</td><td width="195"></td><td width="154">'. $r['link'] . '</td></tr>';}
  15. $list .= '</table>';
  16.  
  17. echo $list;
  18. ?>

maar hiermij krijg ik dus alleen maar alles met de stijl "licht"
hoe kan ik dit maken dat hij afwisselt van stijl nl: "licht", "donker", "licht",...

3 antwoorden

Gesponsorde links
Offline Martijn1989 - 10/07/2007 01:13 (laatste wijziging 10/07/2007 01:13)
Avatar van Martijn1989 PHP ver gevorderde
  1. <link rel="stylesheet" href="images/tabel.css" type="text/css" />
  2.  
  3. <?php
  4.  
  5. include("dbconnect.php");
  6.  
  7. $sQuery = mysql_query("SELECT * FROM htmltuts ORDER BY naam DESC") or die (Mysql_Error());
  8.  
  9. $list = '<table width="503" border="0" cellspacing="0" cellpadding="0" class="tabeltutorials">';
  10.  
  11. $i = "licht";
  12.  
  13. while($r = mysql_fetch_array($sQuery)) {
  14.  
  15. $list .= '<tr class="'. $i .'"><td width="154">'. $r['naam'] . '</td><td width="195"></td><td width="154">'. $r['link'] . '</td></tr>';
  16.  
  17. if($i == "licht") { $i = "donker"; } else { $i = "licht"; }
  18.  
  19. }
  20.  
  21. $list .= '</table>';
  22.  
  23. echo $list;
  24.  
  25. ?>
Offline Nrzonline - 10/07/2007 01:15 (laatste wijziging 10/07/2007 01:18)
Avatar van Nrzonline PHP ver gevorderde
  1. <?PHP
  2. while($r = mysql_fetch_array($rResult))
  3. {
  4. if (!isset ($class) || $class == "donker") ? $class = "licht" : $class = "donker";
  5.  
  6. $list .= '<tr class="' . $class . '">
  7. <td width="154">'. $r['naam'] . '</td>
  8. <td width="195"></td><td width="154">'. $r['link'] . '</td>
  9. </tr>';
  10. }
  11. ?>
Offline maigel - 10/07/2007 01:34 (laatste wijziging 10/07/2007 01:39)
Avatar van maigel PHP beginner okay ty (zal een testen)

edit
heb die van Martijn1515 getest en hij werkt
TY^^
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.195s