A
Anonymous
Guest
You will need to make a search engine that looks for matches with the simptoms entered by the user and then outputs the values of the two differen tables.
This will look in the row my_row of the table PRODUCTLINK for matches with the string $my_var.
This is a very simple search, but you can do as you want.

Code:
$sql = " SELECT * FROM PRODUCTLINK WHERE my_row LIKE '%".$my_var."%' ";
This will look in the row my_row of the table PRODUCTLINK for matches with the string $my_var.
This is a very simple search, but you can do as you want.