I have a website where users submit data to a database. When retrieving the data in the database i want it to display it as a new page. For example, if a user submits a post titled “this is a new post” i want php to take that from the database and display it in the url as www.something.com/this-is-a-new-post instead of www.something.com/index.php?title=this%is%a%new%post
I see multiple sites do this and i have no clue how they do it. I’m not sure if php actually creates a unique directory and index.php for each post or if it somehow just covers up the sloppy url with a fake one for search engine and display purposes…