Hi,
I am new to XML.
I want to read XML file thru PHP.
The format of the file is as follows..
I want to display quiz for a particular chapter and topic, check if the user has selected right ansewer and give thefeedback accordingly.
If someone can help me get started or point to some good tutorial, it will be very helpful.
I am new to XML.
I want to read XML file thru PHP.
The format of the file is as follows..
Code:
<quiz>
<Questions CNO="1" TNO="1" TotalQs="3">
<Question no="1">
<Q>First Q</Q>
<options correctOpt="1">
<option no="1">OPT1</option>
<option no="2">OPT2</option>
...
</Question>
..
</Questions>
..
</Quiz>
I want to display quiz for a particular chapter and topic, check if the user has selected right ansewer and give thefeedback accordingly.
If someone can help me get started or point to some good tutorial, it will be very helpful.