<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<TITLE>Message</TITLE>

<META content="MSHTML 6.00.2900.2802" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT face=Arial><FONT size=2><SPAN 
class=265014512-14052006>Hi!</SPAN></FONT></FONT></DIV>
<DIV><FONT><SPAN class=265014512-14052006></SPAN><FONT face=Arial><FONT size=2>I 
want to assign different colors to European countries based on data in a MySql 
database. In this example, if the SCORE_TAX number is less than 10, the country 
should appear yellow, if not it should appear blue. The database numbers are: 
France - 12, Germany - 3, UK - 9.&nbsp; So France should be blue, and Germany 
and the UK should be yellow. In fact, France is yellow while Germany and the UK 
are white, the color assigned by the mapfile.<SPAN class=265014512-14052006> 
</SPAN></FONT></FONT></FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>I've tried other variations on the code with no 
luck. Any suggestions would be greatly appreciated.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Thanks.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>bagehot</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>======================================<BR>Here's 
the relevant code:</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>$myquery = "SELECT * FROM scores";<BR>$myresult = 
mysql_query($myquery);</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>for ($i = 0; $i &lt; 3; $i++)&nbsp;</FONT></DIV>
<DIV><FONT face=Arial size=2>{<BR>&nbsp;&nbsp;&nbsp;$this_layer = 
$map-&gt;getLayerByName('Europe');<BR>&nbsp;&nbsp;&nbsp;&nbsp;$class = 
$this_layer-&gt; getClass($i);<BR>&nbsp;&nbsp;&nbsp;&nbsp;$style = 
$class-&gt;getStyle(0);<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;while 
($myrow = 
mysql_fetch_array($myresult))<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;if 
($myrow['SCORE_TAX'] &lt; 10)<BR>&nbsp;&nbsp;&nbsp;&nbsp;<SPAN 
class=265014512-14052006>&nbsp;&nbsp;&nbsp; 
</SPAN>{<BR>&nbsp;&nbsp;&nbsp;&nbsp;//yellow<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$int_red 
= 255;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$int_green = 
255;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$int_blue = 
0;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;<SPAN 
class=265014512-14052006>&nbsp;&nbsp;&nbsp; 
</SPAN>}<BR>&nbsp;&nbsp;&nbsp;&nbsp;else&nbsp;<BR>&nbsp;&nbsp;&nbsp;<SPAN 
class=265014512-14052006>&nbsp;&nbsp;&nbsp;&nbsp;</SPAN>&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;//blue<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$int_red 
= 0;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$int_green = 
0;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$int_blue = 
255;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;<SPAN 
class=265014512-14052006>&nbsp;&nbsp;&nbsp; 
</SPAN>}<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;$style-&gt;color-&gt;setRGB($int_red,$int_green,$int_blue);<BR>&nbsp;&nbsp;&nbsp;}</FONT></DIV>
<DIV><FONT face=Arial size=2>}</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>=======================================<BR>The 
relevant mapfile data is:</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>LAYER<BR>&nbsp;&nbsp;NAME 
"Europe"<BR>&nbsp;&nbsp;TYPE POLYGON<BR>&nbsp;&nbsp;STATUS 
ON<BR>&nbsp;&nbsp;DATA "europe1"<BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;CLASS<BR>&nbsp; 
&nbsp;&nbsp;EXPRESSION ('[FIRST_FIPS]' eq 'FR')<BR>&nbsp;&nbsp;&nbsp;NAME 
"France"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;STYLE<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;COLOR 255 255 255<BR>&nbsp;&nbsp;&nbsp;END<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;END<BR>&nbsp; <BR>&nbsp; &nbsp;CLASS<BR>&nbsp; &nbsp;&nbsp;EXPRESSION 
('[FIRST_FIPS]' eq 'GM')<BR>&nbsp;&nbsp;&nbsp;NAME 
"Germany"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;STYLE<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;COLOR 255 255 255<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;END<BR>&nbsp;&nbsp;&nbsp; &nbsp; END<BR>&nbsp; &nbsp;CLASS<BR>&nbsp; 
&nbsp;&nbsp;EXPRESSION ('[FIRST_FIPS]' eq 'UK')<BR>&nbsp;&nbsp;&nbsp;NAME 
"UK"<BR>&nbsp;&nbsp;&nbsp;STYLE<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;COLOR 255 255 255<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;END<BR>&nbsp;&nbsp;&nbsp;&nbsp; 
&nbsp;END<BR>======================================</FONT></DIV></BODY></HTML>