Brent Clark wrote:

Hi all

When ever I do echo on my variable I get the following out:

Business%20Class

is there a way to strip the %20, or what ever be displaying if the future.

It looks like this is urlencoded. (%20 = hex 20 = Space) use echo urldecode($var);

to output it.

Oliver

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to