Hi PHP experts!
I am new in PHP programming and I am faced with a problem to solve:
I have two tables each with two columns(text strings). Some sort of collection of sayings.
The colums are like this:
Table1: |column-E| column-G|
Table2: |column-K| column-E|
I want to produce:
Table3: |column-K| column-G|
THE CHALENGE IS: the strings in Table1(column-E) should be 'almost equal' to the strings in Table2(column-E) for each row.
I want to start with 3 words; once 3 words are found to match, then my program should combine the corresponding 'other' fields to produce the new Table3. I will keep on lowering the number of corresponding words.
Can someone help me in this? I will be very glad. Thanks in advance.
Richard.
PS: I use: MySql, PHP, Apache