I am creating one Exam system in which I want to add numerical questions from html form to mysql database , how can I achieve this , I tried with some editors but did not work attaching sample image of questions
!Thanks
First, you will need to decide which mathematics markup language you want to use.
Some examples are AsciiMath and LaTeX. You could then store the equations/questions as strings in the chosen format in a varchar column in your MySQL database.
Then you would use a library like MathJax to typeset the questions for displaying to the users.