I wanna do with my <TR> bgcolor trough my array
<?$mycolor = array("#E8D0E8", "#F8EFF8");?>
<table>
<?php while ($row=mysql_fetch_array($result)){?>
<tr bgcolor="<?for($i=0;$i<=count($mycolor[$i]);++$i){
echo ("$mycolor[$i]");
}
?>">
<td>blablabbaba</td>
</tr>
<?
}
?>
</table>
I have look my view source output my TR bgcolor , and i found this below
<tr bgcolor="#E8D0E8#F8EFF8"">
I want my <tr> bgcolor display with one by one like this below
<tr bgcolor="#E8D0E8">
<td></td>
</tr>
<tr bgcolor="#F8EFF8">
<td></td>
</tr>
etc....
help please.....
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php