Hello,
I'm creating an application in PHP5 that needs to store a unique URL for a website. For example, if a user enters "http://www.google.com/" ill store it in the DB as "google.com" after parsing it. Basically I need a consistent convention for URLs so that there aren't multiple entries for the same site.
Basically, is it ok to be taking the "www" off of all URLs entered? Or should I keep it?
Id love to hear your opinions.
Thanks in advance!