Hi Thomas,<br><br>Sorry for my wrong example. The kl1 file is :<br><br> <%!<br> char* valeur = NULL;<br> %><br> <html><br> <body><br> <p><br> <form method="POST" action="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&</span>varb<span style="color: rgb(0, 0, 0);">=getvarb</span></span><span style="color: rgb(0, 0, 0);">"</span>><br>
<input type="hidden" name="vara" value="postvara" /><br> <input type="hidden" name="varb" value="postvarb" /><br> <input type="submit" value="Send" name="send" /> <br>
</form><br> </p><br> <%<br> valeur = request_get_arg(request, "send");<br> if(valeur != NULL)<br> {<br> io_printf(out, "<p>Used method : %i</p>", request_get_method(request));<br>
io_printf(out, "<p>Receive values
:<ul><li>vara : %s</li><li>varb :
%s</li></ul></p>", request_get_arg(request, "vara"),
request_get_arg(request, "varb"));<br>
}<br> %><br> </body><br> </html><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>