Skip to content

REQ_POST

Jurek Muszyński edited this page Sep 8, 2018 · 1 revision

bool REQ_POST

Description

Answers whether request method is POST.

Returns

Returns true if request method is POST, otherwise false.

Example

if ( URI("api/v1/customer") )
{
    if ( REQ_GET )
        customer_get(ci);
    else if ( REQ_POST )
        customer_add(ci);
    else if ( REQ_PUT )
        customer_update(ci);
    else if ( REQ_DELETE )
        customer_delete(ci);
    else  /* method not allowed */
        RES_STATUS(405);
}
Clone this wiki locally