Hi world ,

How does PHP receive a POST request ?

I need receive a page that I call like from a form using post method , 

For exemple :

<form method="post" name="formulario" 
action="http://www.web.com/comunidad/directorio/directorio.asp">
<input type="hidden" name="botones" value="Buscar">
<br>Nombre:<input type="text"  name="nombre" size="25" maxlength="30" value='xxx'>
<br><input type=submit  ....
</FORM>

Is not the same like :

http://www.web.com/comunidad/directorio/directorio.asp?botones='Buscar'&nombre='xxx'   
???

I know it works with GET method.
How I can emmulate a post form  from code ?

Thanks in advance

Gaby
http://www.atrivia.com

Reply via email to