Simple Handler" ?> To give you an idea of what a handler really does, let's make a really simple one:
static int Send_Page(request_rec *r)
{
    if (r->method_number != M_GET && r->method_number != M_POST) {
	return DECLINED;
    }
    ap_rputs("Hello, Braga!", r);
    return OK;
}
And associate it with a type:
const handler_rec hello_handlers[] =
{
    {"application/x-hello-world", Send_Page},
    {NULL}
};