On 4 Mar 2001 04:17:18 -0800, Thomas Edison Jr. <[EMAIL PROTECTED]>
wrote:
>The Internet Explorer converts the spaces in a query
>string into it's hexadecimal value of "%20"
>automatically, but netscape is not doing so. It's not
>reading the space and thus not displaying the page at
>all and giving the HTTP error 400. 

Use urlencode() or rawurlencode() when generating those URLs. The standards
don't allow raw spaces in a URL string, so you'll need to encode your data when
generating a link to work with browsers other than IE.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to