Create unique URL Slug for codeigniter
We all used to create unique IDS using auto incremented values in MySql for user IDs or identity values which uniquely identifies a record. While creating a web app usually we use this same ids to refer to that particular record. Consider the example of user id. Suppose a user has got an ID value of 2000 generally we used to refer that in our URLS like this http://myapp.com/user/2000 But it is actually a good habit to keep ids open
(continue →)