home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


Practical mod_perlPractical mod_perlSearch this book

A.6. Sending Multiple Cookies with the mod_perl API

Given that you have prepared your cookies in @cookies, the following code will submit all the cookies:

for (@cookies) {
    $r->headers_out->add('Set-Cookie' => $_);
}


Library Navigation Links

Copyright © 2003 O'Reilly & Associates. All rights reserved.