Hi,
I need to send a string with spaces in between (e.g. "the string to pass") through a form with 'get' method. I first used "%U" to Url-encode this string before I put it into <input type=hidden ...> statement. It seems to be fine when it comes out in the Url, but when I retrieve this string again, the retreived string have "+" signs in the place of empty spaces. Use the "the string to pass" example, it becomes "the+string+to+pass". Is it possible to just return the original string with spaces rather than "+" signs? Any help is highly appreciated. Thanks.
I need to send a string with spaces in between (e.g. "the string to pass") through a form with 'get' method. I first used "%U" to Url-encode this string before I put it into <input type=hidden ...> statement. It seems to be fine when it comes out in the Url, but when I retrieve this string again, the retreived string have "+" signs in the place of empty spaces. Use the "the string to pass" example, it becomes "the+string+to+pass". Is it possible to just return the original string with spaces rather than "+" signs? Any help is highly appreciated. Thanks.