[REBOL] Re: loosing "+" from cgi input
From: hallvard:ystad:oops-as:no at: 25-Apr-2005 22:41
Dixit [sags--apollo--lv] (16.13 25.04.2005):>Hi, Rebolers! > >How to get the string variable, that begins with "+" from cgi >input? > >f.ex. >cgi query => ?phoneNo=+3711234567If this was meant to be a plus when the CGI is decoded, the plus sign should have been CGI encoded itself: cgi query => ?phoneNo=%2B3711234567 When decoding CGI %2B yields '+' + yields ' ' (a space) HY