Generating URL

I am new to Concrete. My organization uses it to conduct end-of-course evaluations.in Moodle. I create a table of course names. The course name is part of the URL. Unfortunately, new courses present a problem. I have to build the url – adding the encoding manually.

Is there some way to produce a full url with all encoding in tact? The full url would look like this:
“BI150DE%3A%20Introduction%20to%20Sacred%20Scripture”

tnx

mm

I’m not exactly clear on how you are making these URLs, nor why, but if you are writing some custom code, you can use PHP’s urlencode() to do that. In JavaScript, you can use encodeURIComponent().