I have a script, which automatically add a URL for every row I insert into database with php.
This is, how it works:
if (isset($_GET['name']) )
$title = $_GET['name'];
<Code to select and echo data from database here>
So, if I insert a row named "UserA", then a URL will be created like this:
example.com/users/?name=UserA
I want to remove "?name="
and make the URL like: example.com/users/UserA