Hi people.
This problem may be a stupid one.
I'm totally new @ this.
Okay, here I go. I'm coding this PHP website, where every page is loaded by accepting values through the URL. Eg. -> xyz.com/view_content.php?id=1234&limit=674
The entire theme of the page changes everytime I enter id and limit values. Is there any way I could reduce the URL to a shorter one like
xyz.com/cool-blue OR xyz.com/eternal-red . so when a user types one of these it points to xyz.com/view_content.php?id=1234&limit=674 or something else.
MY AIM is to store these values in a SQL table. Also the final URL should not be visible in the address bar.