tabel cu culori
Scris: Mar Iul 27, 2010
salut, am o intrebare, am codul am un tabel care imi preaia din bd info care le cer si vreau ca un rand sa fie rosu si un rand sa fie albastru. cum fac? cu stima trif
Cod: Selectaţi tot
<?php
$litera = $_GET['id'];
$query="SELECT * FROM cantari_rosii WHERE denumire LIKE '$litera%'";
$result=mysql_query($query);
$num=mysql_num_rows($result);
echo '<center><a href="cantari.php?id=a">a</a> <a href="cantari.php?id=b">b</a> <a href="cantari.php?id=c">c</a> <a href="cantari.php?id=d">d</a> <a href="cantari.php?id=e">e</a> <a href="cantari.php?id=f">f</a> <a href="cantari.php?id=g">g</a> <a href="cantari.php?id=h">h</a> <a href="cantari.php?id=i">i</a> <a href="cantari.php?id=j">j</a> <a href="cantari.php?id=k">k</a> <a href="cantari.php?id=l">l</a> <a href="cantari.php?id=m">m</a> <a href="cantari.php?id=n">n</a> <a href="cantari.php?id=o">o</a> <a href="cantari.php?id=p">p</a> <a href="cantari.php?id=q">q</a> <a href="cantari.php?id=r">r</a> <a href="cantari.php?id=s">s</a> <a href="cantari.php?id=t">t</a> <a href="cantari.php?id=u">u</a> <a href="cantari.php?id=v">v</a> <a href="cantari.php?id=w">w</a> <a href="cantari.php?id=x">x</a> <a href="cantari.php?id=y">y</a> <a href="cantari.php?id=z">z</a></center><br>';
echo '<b><center>Cantari</center></b><br>';
echo '<table border="0" width="600" >';
echo '<tr> <th> Denumire </th> <th> Marime</th><th> Data</th></tr>';
$i=0;
while ($i < $num) {
$rand=mysql_fetch_array($result);
echo '<tr> <td>'.$rand['denumire'].'</td> <td>'.$rand['marime'].' </td> <td>'.$rand['data'].' </td> </tr>';
++$i;
} echo '</table>';
?>