Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: How to do CGI POST as client?

From: sterling:rebol at: 13-Dec-2000 13:45

You had it except you added quotes around Lookup. Change this line:
> result: read/custom url [ post {npa="732"&nxx="842"&process="Lookup"} ]
to:
> result: read/custom url [ post {npa="732"&nxx="842"&process=Lookup} ]
and you'll be fine. Sterling