[Solved] How to do i create a unique page for each row in database with PHP?
[ad_1] You could try something like this to generate “different” page using one file only(example.com/title.php) Loop through your database to get all data while creating a <a> for each of them: foreach ($retrieveResult as $result) { echo ‘<a href=”https://stackoverflow.com/questions/44427393/example.com/title.php?name=”.$result[“title’].'”>’.$result[‘title’].'</a>’; } This will generate something like this: <a href=”https://stackoverflow.com/questions/44427393/example.com/title.php?name=titleA”>titleA</a> <a href=”example.com/title.php?name=titleB”>titleB</a> <a href=”example.com/title.php?name=titleC”>titleC</a> <a href=”example.com/title.php?name=titleD”>titleD</a> To … Read more