Perhaps I'm using the wrong search terms to try to find this online, but I am trying to accomplish the task of passing a variable in a URL path, with using an identifier.
For example, here is my current URL: http://www.myurl.com/test/index.php?name=bob
On my index.php
page, I would set something along the lines of $name = $_GET['name'];
and have no issue using this variable.
My goal, however, would be to use the URL: http://www.myurl/test/bob/
and still be able to receive "bob" as the name variable in my script.
Is this possible, hypothetically? Thank you!