Simultaneous mysql queries + PHP

Zandibarish

New Member
I need retrieve data from 2 tables at the same time, the tables are not linked by foreigns keys or such.\[code\]$query1 = "select idemployee from employee where address like 'Park Avenue, 23421'";$query2 "select idcompany from company where bossName like 'Peter'";\[/code\]How can I do this with a kinda thread in PHP?. I've heard that threads are no safe in PHP.UPDATED:I got an input field that needs to looks data in both tables, is like search on both tables and show the posible results based on the employee address or boss's name, so you can type an address or just the boss's name. It's just a representation on what I need
 
Back
Top