How to match related products for a price comparison site

I am working on a small site for price / product comparison, this is a niche site related to laptops and tablets built into php.

My problem / question is how to do the following: "matching similar products from different sellers". I mean, when a product has an EAN / ISBN, a simple% LIKE% can do it. But in the data files that I have, there are many products that do not have an ean or any other unique identifier. How do price comparison sites deal with this?

I'm going to find line similarities between product names, but I don't want to match: Acer iconia a500 tab

and acer iconia tab a500 case as similar products. any ideas?

Thank!

+3
source share
2 answers

To implement the comparison, you must put some tags for the products. And when a person searches for a product, list other products that have the same tag.

For example: for laptop tags are similar to a laptop, acer, 14 ", $ 500 (price), etc.

So, when someone is looking for a laptop, list all laptops. so that he can choose 2 of them. and make a comparison.

Hope you have a concept.

+1
source

I had a similar problem. There are different solutions.

( ) ( , , .. ). , .

, -. . , , , .

0

All Articles