Example: web.remove_cookie

In the following example, the remove_cookie function removes the cookie with the name "client_id" from the list of cookies available to the script.

web.add_cookie ("client_id=Abbey; domain=www.northanger.com");
    ...
web.remove_cookie ( "client_id" );