<div>Thank you Pierre four your fast answer.</div>
<div>&nbsp;</div>
<div>This is my label table:</div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp; CREATE TABLE sector<br>&nbsp;&nbsp; (<br>&nbsp;&nbsp; &nbsp;&nbsp; gid int4 NOT NULL DEFAULT nextval('sector_gid_seq'::regclass),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ___dummy varchar,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the_geom geometry,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>open int4 NOT NULL DEFAULT 0,</strong><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CONSTRAINT sector_pkey PRIMARY KEY (gid),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CONSTRAINT enforce_dims_the_geom CHECK (ndims(the_geom) = 2),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CONSTRAINT enforce_geotype_the_geom CHECK (geometrytype(the_geom) = 'MULTIPOLYGON'::text OR the_geom IS NULL),
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CONSTRAINT enforce_srid_the_geom CHECK (srid(the_geom) = -1)<br>&nbsp;&nbsp;&nbsp; ) <br>&nbsp;&nbsp;&nbsp; WITHOUT OIDS;<br>&nbsp;&nbsp;&nbsp; ALTER TABLE sector OWNER TO postgres;</div>
<div>&nbsp;</div>
<div>but I only need to change the &quot;open&quot; variable. If I put one '0' it print the shape red, and if '1' it prints green.</div>
<div>This is my part of .map that make this.</div>
<div>&nbsp;</div>
<div>&nbsp;&nbsp; LAYER<br>&nbsp;&nbsp;&nbsp; NAME &quot;sector140&quot;<br>&nbsp;&nbsp;&nbsp; CONNECTIONTYPE postgis<br>&nbsp;&nbsp;&nbsp; CONNECTION &quot;user=postgres password=postgres dbname=prova host=<a href="http://10.56.0.195">10.56.0.195</a> port=5432&quot;<br>&nbsp;&nbsp;&nbsp; DATA &quot;the_geom from sector&quot;
<br>&nbsp;&nbsp;&nbsp; TYPE POLYGON<br>&nbsp;&nbsp;&nbsp; TRANSPARENCY 50<br>&nbsp;&nbsp;&nbsp; TEMPLATE &quot;ttt&quot;<br>&nbsp;&nbsp;&nbsp; CLASSITEM &quot;open&quot;<br>&nbsp;&nbsp;&nbsp; CLASS<br>&nbsp;NAME &quot;opened&quot;<br>&nbsp;EXPRESSION &quot;1&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; STYLE<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; COLOR 0 255 0 <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OUTLINECOLOR 255 180 180<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp;&nbsp; END<br>&nbsp;&nbsp; CLASS<br>&nbsp;NAME &quot;closed&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EXPRESSION &quot;0&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; STYLE<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; COLOR 255 0 0 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OUTLINECOLOR 255 180 180<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END<br>
&nbsp;&nbsp;&nbsp; END</div>
<div>&nbsp;</div>
<div>It works, but Can anyone help me to make the plugin for change the variable in Database? I never&nbsp;write a plugin yet :(</div>
<div>&nbsp;</div>
<div>Many thanks.</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>&gt; I can change the colour of the shapes through changing one variable in<br>&gt; my databse.<br><br>How do you do that ? Directly in your mapfile using a field value in<br>your database ?<br><br>&gt; But can I change this variable in Cartoweb interface? and if the
<br>&gt; answer is yes how?<br><br>This could be the job of a new plugin in your project.<br>On client side, this would add a form button on the interface and handle<br>it to send a specific request to the server side.<br>
On server side, this would call the mapOverlay plugin to change the<br>style of the defined layer.<br><br>&gt;<br>&gt; I don't know if I explained. I need change the colour of the shapes<br>&gt; through buttons in the same interface.
<br>&gt;<br>&gt; Many thanks.<br>&gt;<br>&gt;------------------------------------------------------------------------</div>