Hi Thomas,<br><br>Sorry for my previous message I haven&#39;t seen the subjet in other archives. All patches must be available on your Web site.<br><br>I use a standard linux for my test.<br><br>My new question concerns the GET and POST methods. Their reunion does not distinguish them when they are used at the same time.<br>
The next example (named index.kl1) shows this problem :<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=<span style="font-weight: bold;">&quot;POST&quot;</span> action=&quot;index.kl1<span style="font-weight: bold;">?vala=getvara&amp;valb=getvarb</span>&quot;&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>For this example the used method is &quot;HM_POST&quot;, &quot;vara = getvara&quot; and &quot;varb = getvarb&quot;. The POST values are forgotten.<br>
My method is correct ?<br>Can I use the GET and POST value at the same time ?<br>How to dodge this problem ?<br><br><br>Thanks.<br>-- <br>Mickaël AUGER<br><a href="mailto:mickael.auger@gmail.com">mickael.auger@gmail.com</a>