PHP: urlencode - Manual - PHP: Hypertext Preprocessor
"cleaning the URL",Totally and in a nut shell: 1.You must use rawurlencode() for parts that come before "?" 2.Use urlencode for all GET parameters (values that come after each "=")(POST parameters are automatically encoded). 3.Use htmlspecialchars for HTM...