I need to convert a string for linking. For example, convert "Click Here" to "Click%20Here". Is there a function to do this??
Take a look at the URL functions in the docs (http://www.php.net/manual/en/ref.url.php). A couple to look at are urlencode() and urldecode().
Tim Frank