Post and get

Iceman_a

New Member
I want to have one page that I have a form on. The results of this submit need to be pulled by webspeed script and used to generate the results of the submit. Can anyone shed some light on this for me.
 
If your form has the METHOD=POST atribute you can use the REQUEST_METHOD Progress variable.

IF REQUEST_METHOD = "POST" THEN DO:
.... process your submit action ...
END. /*post*/
ELSE IF REQUEST_METHOD = "GET" THEN DO:
..... process the get request ....
END. /*get*/
ELSE DO:
.. anytime .. display ..
END.

Rares Stanciulescu
 
Thanks

Thanks, but I was using this method already. I was actually looking more for how to retrieve the posted data from another page. I guess it would have helped if I had been more specific. Anyways, thanks again.
 
Back
Top