[REBOL] Re: Problem with CGI
From: ammon:addept:ws at: 25-Jan-2004 4:45
You got exactly what you were looking for. The molded value of
system/options/cgi/query-string from a fresh console is "none" If you would
like to know what the query string looks like try uploading a script to your
server that looks something like:
#!/path-to-rebol/rebol -cs
print "Content-Type: text/html^/" ;-- Required Page Header
print [<html><body><h2>"Probing query-string..."</h2>]
probe system/options/cgi/query-string
print [</body></html>]
A useful resource is www.rebol.org try searching for CGI and you will find
many usefull examples and tools.
HTH
~~Ammon ;->