Re: [racket] cgi dynamic link

2010-11-01 Thread Noel Welsh
On Sun, Oct 31, 2010 at 11:24 PM, scouic wrote: > For example, for create a link to /hello, i have a function > (lambda (query) '(html (body (div "hey all" who, when i'm connecting > with the browser at localhost:8080/hello, displays "hey all". This is good. > Now, i have another webpage, /myb

[racket] cgi dynamic link

2010-10-31 Thread scouic
Hi all, i have a problem within the creation of "dynamic links" : I have a racket blog, and i have a function who takes all posts from a database (posts = body + title ) and creates a link (make-url ... request) with the title who refers to a new page that display the body. This perfectly works.