Hi Thomas,<br><br>Sorry for my wrong example. The kl1 file is :<br><br>&nbsp;&nbsp;&nbsp; &lt;%!<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; char* valeur = NULL;<br>&nbsp;&nbsp;&nbsp; %&gt;<br>&nbsp;&nbsp;&nbsp; &lt;html&gt;<br>&nbsp;&nbsp;&nbsp; &lt;body&gt;<br>&nbsp;&nbsp;&nbsp; &lt;p&gt;<br>&nbsp;&nbsp;&nbsp; &lt;form method=&quot;POST&quot; action=&quot;index.kl1<span style="font-weight: bold; color: rgb(255, 0, 0);"><span style="color: rgb(0, 0, 0);">?</span>vara<span style="color: rgb(0, 0, 0);">=getvara&amp;</span>varb<span style="color: rgb(0, 0, 0);">=getvarb</span></span><span style="color: rgb(0, 0, 0);">&quot;</span>&gt;<br>

&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;input type=&quot;hidden&quot; name=&quot;vara&quot; value=&quot;postvara&quot; /&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;input type=&quot;hidden&quot; name=&quot;varb&quot; value=&quot;postvarb&quot; /&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &lt;input type=&quot;submit&quot; value=&quot;Send&quot; name=&quot;send&quot; /&gt; <br>

&nbsp;&nbsp;&nbsp; &lt;/form&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/p&gt;<br>&nbsp;&nbsp;&nbsp; &lt;%<br>&nbsp;&nbsp;&nbsp; valeur = request_get_arg(request, &quot;send&quot;);<br>&nbsp;&nbsp;&nbsp; if(valeur != NULL)<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; io_printf(out, &quot;&lt;p&gt;Used method : %i&lt;/p&gt;&quot;, request_get_method(request));<br>

&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; io_printf(out, &quot;&lt;p&gt;Receive values
:&lt;ul&gt;&lt;li&gt;vara : %s&lt;/li&gt;&lt;li&gt;varb :
%s&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&quot;, request_get_arg(request, &quot;vara&quot;),&nbsp;
request_get_arg(request, &quot;varb&quot;));<br>
&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; %&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/body&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/html&gt;<br clear="all"><br>GET and POST variables have the same name.<br><br>By analogy, PHP, in the quest to recover the variables, there are
several arrays ($_POST and $_GET), which are quite distinct. <br>
There is also the concatenation of these two arrays ($_REQUEST), I need to
separate the GET and POST variables, regardless of the method of the
form (as in the example above).<br><br>-- <br>Mickaël AUGER<br><a href="mailto:mickael.auger@gmail.com">mickael.auger@gmail.com</a>