"Christopher J. Crane" wrote:

> >    $color = ($color == "FFFFFF")? "EAEAEA" : "FFFFFF";

 Break it down:

 $color = <whatever>  (we don't care right now)

 That <whatever> is:  ($color == "FFFFFF")? "EAEAEA" : "FFFFFF"

 And that says:  Evaluate the (current) variable $color.

 Is it FFFFFF?  if so, change it to EAEAEA, otherwise make it FFFFFF

 $color == "FFFFFF" ? (yes) change to "EAEAEA" : (no) make it FFFFFF

--
W | I haven't lost my mind; it's backed up on tape somewhere.
  +--------------------------------------------------------------------
  Ashley M. Kirchner <mailto:[EMAIL PROTECTED]>   .   303.442.6410 x130
  IT Director / SysAdmin / WebSmith             .     800.441.3873 x130
  Photo Craft Laboratories, Inc.            .     3550 Arapahoe Ave. #6
  http://www.pcraft.com ..... .  .    .       Boulder, CO 80303, U.S.A.




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to