I have an application which creates stores for users and they can create a single page store using my dashboard.The final URL generated after they create the store is as follows
baseurl/store/{username}/{random number}
Now how can I access the {username} and {random number}.
If I have a index file in directory 'store' --store ----index.php will I be able to fetch the above username and random number from the url?If this was in codeingiter things would have been easy , and I could make a controller with name store and get the uri segments.But how can I do the same in pure PHP without any frame work.Please do help