Each page of my site is dynamically generated via my database, and some of the URL's to product names contain special characters, like trademark symbols...etc.
The name in the URL is then queried in my database, and I've been having luck using odd URL's like so:
http://www.domain.com/Coolproduct-Rad_reg;_Super.php
http://www.domain.com/DopeProduct-Nice__153;_Travel.php
Notice that I just had to use an underscore character in the name, so that MySQL will treat it as a wildcard character and return the proper results.
I ran into one problem, which is in regard to double quotes.
I have a product name like so:
/SuperCoolProduct Black "large"
I've tried escaping the double quotes using many different techniques, but to no avail.
I was assuming I'd just be able to utilize the underscores like I did with the rest of the product names, but that is not the case... and, I've tried many of the following combinations:
/SuperCoolProduct_Black__large_
/SuperCoolProduct_Black__quot;large_quot;
/SuperCoolProduct_Black__34;large_34;
Any suggestions would be greatly appreciated !!
TIA !