[REBOL] How do I simulate CGI? Re:(2)

2000-01-20 Thread tjohnson
Thanks!! It worked. Tim At 02:47 PM 1/19/00 -0800, you wrote: ;;;query-string is redefined to simulate input from a form query-string: "name=tim[EMAIL PROTECTED]phone=9005551212" cgi: make object! decode-cgi system/options/cgi/query-string

[REBOL] [REBOL] How do I simulate CGI? Re:

2000-01-20 Thread tjohnson
Hi Elan: Thanks for that tip. Actually, I use a multi-stage process (I've been using compiled apps with C/C++); 1)First write and debug in a console mode, redirecting html stdout to a test file. 2)Then run with web browser against Microsoft Personal Web Server. 3)Then port to server.

[REBOL] How do I simulate CGI?

2000-01-19 Thread tjohnson
I am a CGI programmer new to Rebol. In previous work, I have begun a project by simulating the CGI environment on my desktop and redirecting output from stdout to a file. How may I create a test query string to run directly from my desktop? The attempt that I made was to copy cgiform.r and

[REBOL] How do I simulate CGI? Re:

2000-01-19 Thread icimjs
;;;query-string is redefined to simulate input from a form query-string: "name=tim[EMAIL PROTECTED]phone=9005551212" cgi: make object! decode-cgi system/options/cgi/query-string cgi: make object! decode-cgi query-string will work in your

[REBOL] How do I simulate CGI? Re:

2000-01-19 Thread icimjs
At 12:28 PM 1/19/00 -0900, you wrote: I am a CGI programmer new to Rebol. In previous work, I have begun a project by simulating the CGI environment on my desktop and redirecting output from stdout to a file. I have installed Apache on my MS Windows desktop machine and run a Web browser