1
0
Fork 0
forked from fun/fun

Added some basic CGI support using kcgi plus a lot of fixes and content updates. (0.41.9)

This commit is contained in:
Johannes Findeisen 2026-05-09 10:47:33 +02:00
commit 604c415c0c
25 changed files with 407 additions and 13 deletions

View file

@ -0,0 +1,14 @@
#!/usr/bin/env fun
/*
* Minimal example using KCGI wrapper.
* Run under a CGI/FastCGI environment where kcgi can parse the request.
*/
#include <net/kcgi.fun>
cgi = KCGI()
name = cgi.get_or("name", "Fun")
body = "<h1>Hello, " + to_string(name) + "!</h1>"
cgi.reply(200, "text/html; charset=utf-8", body)