I want to compare two SQL table( code PHP) : Class1 & Class2
Class1 Class2
ID | Name | Age ID | Name | Age
101 | Bob | 20 101 | Bobb | 22
102 | Jame | 21 102 | Jame | 21
103 | Kenny | 21
Suppose, the difference is mistake while typing and Class1 is the original data.
How to hightlight difference in both ( two) table and show this in PHP site. Like that
Class1 Class2
ID | Name | Age ID | Name | Age
101 | **Bob** | **20** 101 | **Bobb** | **22**
102 | Jame | 21 102 | Jame | 21
**103** | **Kenny** | **21**
My mean is color or bold in PHP code.
Thanks for your help.