I use my first query to get the id and name of the user like this:
select id,name from temp_card where sex= $sex and city= $city order by name ASC
然后,我有第二个问题,利用第一个成果,并从另一个表格获得更多的数据:
select images from temp_card_images where temp_card_id=". $row[ id ] ." order by id ASC limit 1
我怎么能够把这两个问题结合起来,以便我能够在一旁就把3个领域(种子、名称和图像)印成单册?
谢谢!