Hello,
I am passing my variables in my url for the front-end of my search engine. I was wondering how you change some of the charters in the url. For example,
http://localhost/testSearchEngine.php4?page=10&query=#& Co
to
http://localhost/testSearchEngine.php4?page=10&q=%23%26+co
Thanks for any help…
dr
check out urlencode(), urldecode(), rawurlencode(), and rawurldecode().
Thanks....