Justtechjobs.com Find a programming school near you






Online Campus Both


php4-beta | 200004

Re: [PHP4BETA] A (Hopefully) simple question *gulp* From: John Steele (overlord <email protected>)
Date: 04/27/00

David,

>Yup. Initialise a counter then increment it for each table row you
>display. Then, on each row, test the counter value mod 2. If the result
>is zero, use one colour for row background, otherwise use the other
>colour.

  Here's another simple way to let the colors do the work. It can be made into a pretty sick one-liner :)

<?
$color1 = "#ffffff";
$color2 = "#E1DAC1";
?>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=1>
<TR>
  <TH>Blah</TH><TH>Blah2</TH>
</TR>
<?
$color = "";
for ($i=0;$i < $num; $i++) {
  $color = ($color == $color1) ? $color2 : $color1;
  echo "<tr bgcolor=\"$color\"><td>yada</td><td>spew</td></tr>
  // more stuff
  }
?>
</table>

Cheers,
  John

--
/* SteeleSoft Consulting    John Steele - Systems Analyst/Programmer
 *  We also walk dogs...    jsteele <email protected>
 *                          http://www.gamecomputer.com/ssc/
 */

-- PHP 4.0 Beta Mailing List <http://www.php.net/version4/> To unsubscribe, e-mail: php4beta-unsubscribe <email protected> For additional commands, e-mail: php4beta-help <email protected> To contact the list administrators, e-mail: php4beta-admin <email protected>