urlencode and uri_escape

2005-01-14 Thread Peter
Hi all, there seems to be a slight difference between the function urlencode from php and the uri_escape in perl: the encoded result of "test !"§$%&/()=" is different: in php: test+%21%22%A7%24%25%26%2F%28%29%3D in perl: test%20%21%22%3F%24%25%26%2F%28%29%3D The difference is the space: in php it

Re: urlencode and uri_escape

2005-01-14 Thread Matt Howard
Peter wrote: Hi all, there seems to be a slight difference between the function urlencode from php and the uri_escape in perl: the encoded result of "test !"§$%&/()=" is different: in php: test+%21%22%A7%24%25%26%2F%28%29%3D in perl: test%20%21%22%3F%24%25%26%2F%28%29%3D The difference is the spa

Re: urlencode and uri_escape

2005-01-14 Thread Octavian Rasnita
If I remember well, the + sign is an old style of printing a space and this style was used in web pages that use isindex forms. Teddy - Original Message - From: "Matt Howard" <[EMAIL PROTECTED]> To: Sent: Friday, January 14, 2005 9:58 PM Subject: Re: urlencode and ur