I need your help :
For my diploma I want to create a table where the students insert values (every input type text) and these inserted values must be converterd to PHP array (using $.ajax from JQuery) and return red background to wrong inserted values (make input background to red)
for example : my original array
------
s1 s1 s2
s3 s1 s3
s2 s3 s1
---------
student's values
------
s1 s2 s3
s3 s2 s3
s1 s3 s1
------
these two arrays must be compared and return red backgroun to different values (the bold values are wrong ! because is not same with original array)
help please
thanks