Hey noel, thank you, it works perfectly.<br><br>However, i have the following problem : i can&#39;t modify my cookie-value ...<br>my blog starts with <br>(define start request)<br>  ( my-home-page request))<br><br>next,<br>
(define (my-home-page request)<br>  (define foo (make-cookie &quot;id&quot; &quot;my-content&quot;) <br>  (set! foo (set-cookie &quot;id&quot; &quot;another content&quot;) ;; so now the content of the cookie has changed<br>
...<br> `(html (body (p ,(print-cookie foo))<br>  (a (href &#39;a-link to (a-post request))&quot; &quot;link&quot;)<br>))))<br><br>;;;;;<br>(define (a-post request)<br>   (set! foo (set-cookie &quot;id&quot; &quot;master content&quot;)) ;; here, why can&#39;t modify my cookie value ?<br>
...<br>)))<br><br>(serve/servlet start)<br><br>I don&#39;t understand : i start my blog wich calls (my-home-page), and this one creates a cookie. But in (a-post request) i can&#39;t i modify my cookie, because foo is an unknown word ...<br>
How can i retrieve the content of my cookie in my (a-post ...) function ?<br><br>thanks for your help,<br>-mw<br>