How do you post data with a link

后端 未结 7 2035
感情败类
感情败类 2021-01-30 18:15

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

7条回答
  •  無奈伤痛
    2021-01-30 18:39

    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.

提交回复
热议问题