I have a database which holds the residents of each house in a certain street. I have a \'house view\' php web page which can display an individual house and residents when give
I assume that each house is stored in its own table and has an 'id' field, e.g house id. So when you loop through the houses and display them, you could do something like this:
Then in house.php, you would get the house id using $_GET['id'], validate it using is_numeric() and then display its info.