Re: Table background..
[ Follow Ups ] [ Post Followup ] [ Intranet eXchange ] [ IDM Home ]
Posted by C.Davies on August 10, 2000 at 5:1:27:
In Reply to: Re: Table background.. posted by Mark Wray on August 9, 2000 at 14:4:30:
I have defined it (because its two different colours. The source is: while ($my_array = mysql_fetch_row($my_results)){ echo ("<tr BGCOLOR=\"#ffffff\" ALIGN=CENTER><td>$my_array[0] $my_array[1]</td>"); echo ("<td>$my_array[5]</td>"); echo ("<td>$my_array[2]</td>"); echo ("<td><a href=\"javascript:detail_win('$my_array[6]')\"><img src=\"detail_icon.gif\" border=0></a></td>"); echo ("</tr>"); } echo ("</table>");
Follow Ups:
|