I have two tables named company
and customers
.
The company
table has 3 fields ID
, company
and Type
as:
ID Company Type 1 ABC Running 2 XYZ Current
Now, again, in the customers
table, I presented the value of the company and customers, but here the value of the company is presented as ID
as:
Company Customer Name 1 monty 2 sandeep
Now I want to search for the company name in the customer table, but when I put the company name in the search field, it does not show anything, because the value of the company name is in the form of an identifier in tabe.html. How can I achieve it.
Here is my search query:
$sql = "Select * from customers where name like '%$term%' or location like '%$term%' or company like '%$term%'";
source share