Hi Oliver, I try to send a variable like this<br><br>in the recenterInput.tpl I have<br><pre><span class="anchor" id="line-91"></span>&lt;input type=&quot;text&quot; name=&quot;variableimg&quot; value=&quot;&quot; /&gt;<br>
</pre>the makeSearch function return the dir of the image<br><br><pre>protected function makeSearch($searchString) {<br><span class="anchor" id="line-124"></span>...<br><span class="anchor" id="line-125"></span>   return $row-&gt;imagen;<br>
<span class="anchor" id="line-134"></span>}<br></pre>and filterPostRequest set the result into the field<br><pre>public function filterPostRequest(FilterRequestModifier $request) {<br><span class="anchor" id="line-161"></span>    $searchString = $request-&gt;getValue(&#39;variableimg&#39;);<br>
<span class="anchor" id="line-162"></span>    if (!empty($searchString)) {<br><span class="anchor" id="line-163"></span><br><span class="anchor" id="line-164"></span>        // To simplify we assume that only one result is returned by the search<br>
<span class="anchor" id="line-165"></span>        $variableImg = $this-&gt;makeSearch($searchString);<br><span class="anchor" id="line-166"></span>        $request-&gt;setValue(&#39;variableimg&#39;, $variableImg);<br><span class="anchor" id="line-168"></span>    }<br>
<span class="anchor" id="line-169"></span>}<br>...<br></pre>But don&#39;t show the name of the image, now, I try to show an image like this<br><pre>&lt;!--varImagen.tpl--&gt;</pre>
&lt;input type=&quot;image&quot; name=&quot;varImagen&quot; id=&quot;varImagen&quot; src=&quot;{$varImagen_path}&quot; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; style=&quot;width:{$varImagen_width}px;height:{$varImagen_height}px;&quot; /&gt;<br><br>I try to use <br>
<br><pre>protected function drawUserForm() {<br><span class="anchor" id="line-99"></span>    $smarty = new Smarty_Plugin($this-&gt;getCartoclient(), $this);<br><span class="anchor" id="line-100"></span>    return $smarty-&gt;fetch(&#39;varImagen.tpl&#39;);<br>
<span class="anchor" id="line-101"></span>}<br><span class="anchor" id="line-102"></span><br><span class="anchor" id="line-103"></span>public function renderForm(Smarty $template) {<br>...<br>$varImagen_path=&quot;images/museo.jpg&quot;;<br>
<span class="anchor" id="line-104"></span>    $template-&gt;assign(&#39;varImagen_path&#39;,$varImagen_path);<br><span class="anchor" id="line-105"></span>}<br></pre>And the folder images is in htdocs folder, I have the idea how to make my plugin, but don&#39;t understand very well how work it. Thanks for your help.<br>
<br>Thanks and regards,<br><font style="color: rgb(0, 0, 0);" color="#888888">Karol<br><br></font><div class="gmail_quote">2008/11/25 Karol Briones <span dir="ltr">&lt;<a href="mailto:karolitab@gmail.com">karolitab@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Thanks Oliver, I want to try it.<br><br>Thanks and regards,<br><font style="color: rgb(0, 0, 0);" color="#888888">Karol</font><br>
<br><div class="gmail_quote">2008/11/25 Oliver Christen <span dir="ltr">&lt;<a href="mailto:oliver.christen@camptocamp.com" target="_blank">oliver.christen@camptocamp.com</a>&gt;</span><div><div></div><div class="Wj3C7c">
<br>

<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">





<div bgcolor="#ffffff">
<div><font size="2">hi</font></div>
<div><font size="2">have a look at the examples in the wiki, </font></div>
<div><font size="2">especially <a href="http://www.cartoweb.org/cwiki/HowToWriteaRecenterPlugin" target="_blank">http://www.cartoweb.org/cwiki/HowToWriteaRecenterPlugin</a>&nbsp;which 
should give you pretty much all the pieces you need.</font></div>
<div><font size="2"></font>&nbsp;</div>
<div><font size="2">regards</font></div>
<div><font size="2">Oliver</font></div>
<blockquote style="border-left: 2px solid rgb(0, 0, 0); padding-right: 0px; padding-left: 5px; margin-left: 5px; margin-right: 0px;"><div><div></div><div>
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">----- Original Message ----- </div>
  <div style="background: rgb(228, 228, 228) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">


<b>From:</b> 
  <a title="karolitab@gmail.com" href="mailto:karolitab@gmail.com" target="_blank">Karol 
  Briones</a> </div>
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"><b>To:</b> <a title="cartoweb-users@lists.maptools.org" href="mailto:cartoweb-users@lists.maptools.org" target="_blank">cartoweb-users@lists.maptools.org</a> 
  </div>
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"><b>Sent:</b> Monday, November 24, 2008 10:43 
  PM</div>
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"><b>Subject:</b> [Cartoweb-users] How to create 
  requests variables</div>
  <div><br></div>Hello list, I try to create a new plugin that query te database 
  and show the result on the cartoclient.tpl, but I don&#39;t know how to create 
  variable request or create an variable into the client.php from the new plugin 
  ,send this variable and get this variable in template to show the result, 
  thanks for your help.<br><br clear="all">Thanks and regards,<br><font style="color: rgb(0, 0, 0);" color="#888888">Karol</font><br>
  </div></div><p>
  </p><hr>

  <p></p>_______________________________________________<br>Cartoweb-users 
  mailing 
  list<br><a href="mailto:Cartoweb-users@lists.maptools.org" target="_blank">Cartoweb-users@lists.maptools.org</a><br><a href="http://lists.maptools.org/mailman/listinfo/cartoweb-users" target="_blank">http://lists.maptools.org/mailman/listinfo/cartoweb-users</a><br>


</blockquote></div>
</blockquote></div></div></div>

</blockquote></div>