I have a doubt about ho to set multiple cookies.I'm using apache 2.2 and in my module handler I'm trying to set two different cookies with:
apr_table_set(r->headers_out, "Set-Cookie", co); apr_table_set(r->headers_out, "Set-Cookie", co1); It seems that the second instruction override the first one. So my question: how can I set two cookies in my module? Best regards Marco