Posted by Martin on 10/13/75 12:00
On 16 Jan 2008 15:44:20 GMT, Kim André Akerø
<kimandre@NOSPAMbetadome.com> wrote:
>Martin wrote:
>
>> Is there a simple way to tell if a page was submitted as a POST or a
>> GET?
>>
>> I have a page that contains a form with multiple submit buttons. If
>> the page is POSTed, I go through a somewhat complex analysis of what
>> needs to be done depending on which button was clicked.
>>
>> On the other hand, if the page was submitted via GET, I simply set
>> some default values and send it out. I'd like to be able to do this
>> without having to look for every button only to find out that none
>> were submitted.
>
>You could try checking the value of $_SERVER["REQUEST_METHOD"].
Perfect! Thank you.
[Back to original message]
|