Hi I have form with 4 input box.
Say like A,B, C,D. Now what i have to do that suppose B is the correct answer to the question. I have to check on click of a checkbox from MySql that clicked checkbox is correct or not and displays a message on click of a checkbox as " right answer or wrong answer.
Code:
<input type="checkbox" id="chkOne" name="chk[]" value="A"> A<br>
<input type="checkbox" id="chkOne" name="chk[]" value="B"> B<br>
<input type="checkbox" id="chkOne" name="chk[]" value="C"> C<br>
<input type="checkbox" id="chkOne" name="chk[]" value="D"> D<br>
After doing so that question will be disable permanently for that user.
I am new to Ajax. Please give me an idea to do that.
Help will be very much appreciated.