Older version of Netscape do not seem to recognize the %20 usage for a blank space.
In my case $sort = id DESC When I set up the sort script I use "id%20DESC". Older versions of Netscape drop everything after the "id" so that "%20DESC" is not recognized. This in turn mess up my sort.
What's the cure?
Thanks, Paul.
Try using a "+" instead of "%20".
Check the manual on the functions urlencode(), urldecode() and rawurlencode() and give these a try (examples in the annotated online manual) instead of hand encoding the string...