I use Power Basic 3.5.
While it is no problem to generate HTML pages via stdout i have no idea how to retrieve given parameters (from HTML form to my CGI program). Command$ does not work, environ$(QUERY_STRING) gives a null string.
Printable View
I use Power Basic 3.5.
While it is no problem to generate HTML pages via stdout i have no idea how to retrieve given parameters (from HTML form to my CGI program). Command$ does not work, environ$(QUERY_STRING) gives a null string.
If the form is submitted via GET, the QUERY_STRING environmental variable should be set. If it's by POST, I think that comes in with standard input.