Well in my mapfile&nbsp; i've this select  <br><br>DATA &quot;the_geom FROM (select comune, DCA01_01 as Abitazioni_Totali, DCA02_01 as Abitazioni_Residenti, DCA03_01 as Abitazioni_Non_residenti, DCA04_01 as Abitazioni_vuote, the_geom, gid from abitazioni) AS abitazioni1 USING UNIQUE gid USING SRID=-1&quot;
<br><br>but in my query result i can still see SHAPE_INDEX, TILE_INDEX,LAYER_INDEX<br><br>Why?? <br><br><div><span class="gmail_quote">2006/6/6, Julien-Samuel Lacroix &lt;<a href="mailto:jlacroix@mapgears.com">jlacroix@mapgears.com
</a>&gt;:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi,<br>With the new QueryResult.phtml you can specify which field will be shown
<br>directly in your mapfile or in the Query widget.<br><br>In your mapfile, in the layer, you can use the HEADER parameter like this:<br>HEADER &quot;Field^Title in the result table|Field^Title&quot;<br>Example: HEADER &quot;NAME^Name|UNIQUE_KEY^Key&quot;
<br><br>In your widget you can use:<br>&lt;CWC2 Type=&quot;Query&quot;...&gt;<br>&nbsp;&nbsp; &lt;TABLEHEADER LAYER=&quot;popplace&quot; HEADER=&quot;NAME^Name|UNIQUE_KEY^Key&quot;/&gt;<br>&lt;/CWC2&gt;<br><br>If you still want to change the .phtml go around line 294, the field
<br>shown are defined here:<br><br>foreach ($aRows[0] as $key =&gt; $value)<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp; $aszHeaderNames[&quot;$key&quot;] = $key;<br>}<br><br>Julien<br><br>listserver server wrote:<br>&gt; Updating to the last version of chameleon i've noted that
<br>&gt; queryreult.phtml is completely different from the previous version!<br>&gt;<br>&gt; In the previous version i added this lines for 2 reason, to remove<br>&gt; SHAPE_INDEX, TILE_INDEX,LAYER_INDEX from query result and for format
<br>&gt; http header.<br>&gt;<br>&gt; // loop and add a cell for each result<br>&gt; foreach ( $aRow as $key =&gt; $xCell )<br>&gt; {<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //String comparison to search for fields that should NOT be returned in query results.
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (strcasecmp($key, &quot;SHAPE_INDEX&quot;) == 0 ||<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strcasecmp($key, &quot;TILE_INDEX&quot;) == 0 ||<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strcasecmp($key, &quot;LAYER_INDEX&quot;) == 0)<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;continue;
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//Look for strings containing an http header.&nbsp;&nbsp;If exists then format as a link, if not format as normal text.<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if ( stristr ($xCell, 'http://' &lt;http://%27/&gt; ))
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $szReturnValue .= &quot;&lt;td class=\&quot;subContentArea1\&quot;&gt;&lt;p<br>&gt; class=\&quot;text\&quot;&gt;&lt;a href='&quot;. $xCell.&quot;' target='_blank'&gt;Click here for more<br>&gt;<br>&gt; information&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;\n&quot;;
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $szReturnValue .= &quot;&lt;td class=\&quot;subContentArea1\&quot;&gt;&lt;p<br>&gt; class=\&quot;text\&quot;&gt;&quot;. $xCell.&quot;&lt;/p&gt;&lt;/td&gt;\n&quot;;<br>&gt;<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$szReturnValue .= &quot;&lt;/tr&gt;\n&quot;;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br>&gt;<br>&gt;<br>&gt; Can be done something similar also in new queryresult.phtml ??<br>
&gt;<br>&gt;<br>&gt;<br>&gt; ------------------------------------------------------------------------<br>&gt;<br>&gt; _______________________________________________<br>&gt; Chameleon mailing list<br>&gt; <a href="mailto:Chameleon@lists.maptools.org">
Chameleon@lists.maptools.org</a><br>&gt; <a href="http://lists.maptools.org/mailman/listinfo/chameleon">http://lists.maptools.org/mailman/listinfo/chameleon</a><br><br>--<br>Julien-Samuel Lacroix<br>Mapgears<br><a href="http://www.mapgears.com/">
http://www.mapgears.com/</a><br></blockquote></div><br>