I'm using MySql on a web server. Iv''e got at table with diffrent catgories, where some of the category has non-url-supported charcters such as &, : åäö, etc.
I'd like function that turns all non-url-supported-characters into a '-'. For instance: Me & My Friends -> me-my-friends.
I know that I can make another table with "url-name" but that's not a good solution for med. I would also like to avoid using the REPLACE function for every non-supported chacter.
I'd like function that turns all non-url-supported-characters into a '-'. For instance: Me & My Friends -> me-my-friends.
I know that I can make another table with "url-name" but that's not a good solution for med. I would also like to avoid using the REPLACE function for every non-supported chacter.
Comment