How do I convert
example.com/company?name=famoustech to static link example.com/company/famoustech from HTML tag
Example
<a href="example.com/company?name=Famoustech">Famoustech</a>
Once user click the link how to convert it to
example.com/company/famoustech
Using .htaccess also to fetch the value from database in example.com/company page
How can I achieved this in PHP and MYSQLI
This is what I have done so far
On Index
<a href="/company/<?= $row['company']?>"><?= $row['company']?></a>
which look example.com/company/famoustech
On Company page
$company_name = $_GET['company'];
but is 500 internal server error