>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>
Try this:
/* ---------- from here ---------- */
<?php
$mycolor = array("#E8D0E8", "#F8EFF8");
echo "<table>\n";
foreach ($mycolor as $value) {
echo "<tr bgcolor=\"$value\">\n<td></td>\n</tr>\n";
}
echo "</table>\n";
?>
/* ---------- 'til here ---------- */
- E
PS
See: http://www.php.net/manual/en/control-structures.foreach.php
>
>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
_________________________________________________________________
きっと見つかるあなたの新居 不動産情報は MSN 住宅で http://house.msn.co.jp/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php