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

[REBOL] Re: HTTP-Post Error

From: gchiu:compkarori at: 28-Oct-2002 20:47

On Sun, 27 Oct 2002 23:53:55 -0500 "Matthew Kim" <[mattymattkim--hotmail--com]> wrote:
>post_data: "data1=value&data2=value2" > >read/custom URL[ > post post_data >]
That's because 'post_data is inside the block, and not yet evaluated. You can also try read/custom URL reduce [ 'POST post_data ] -- Graham Chiu