|
I don't really see any point in using urlencode(), I can't figure how rogem002 was thinking. Please correct me if I'm missing something. All that urlencode() does, is exactly what it's name says. It encodes a string to an url. That is, it replaces non alphanumeric (except some, like . or _) values with a % followed by two hex digits. Spaces are replaced with a plus sign. (All this can also be read at php.net).
|